簡體   English   中英

為什么我的查詢未返回任何內容

[英]Why is my query not returning anything

我正在編寫LINQ查詢以根據用戶輸入和選擇來過濾記錄。 用戶可能未提供某些輸入。 所以我需要根據給定的輸入進行過濾。 我嘗試僅在5個可選輸入中給出1個值。 但是查詢沒有返回任何內容。 請幫助我找到正確的查詢。 您可以在查看查詢后更好地理解。

var model = (from items in Db.Items
             where ((items.ItemNo == null || 
                     items.ItemNo == String.Empty) ||
                    ((items.ItemNo.CompareTo(DD.FromItemNo) >= 0) &&
                     (items.ItemNo.CompareTo(DD.ToItemNo) <= 0))) &&
                   (items.InfoTypeId == 0 ||
                    (items.InfoTypeId == DD.InfoType)) &&
                   (items.CreatedOn == null ||
                    (items.CreatedOn >= DD.Start &&
                     items.CreatedOn <= DD.End)) &&
                   (items.StatusId == 0 ||
                    (items.StatusId == DD.Status)) &&
                   (items.LocationId == 0 ||
                    (items.LocationId == DD.Location)) &&
                   (items.CollectionId == 0 ||
                   (items.CollectionId == DD.Collection))
             select new ViewModel()
             {
                 Itemid = items.Id,
                 INo = items.ItemNo,
                 BTags = (from asd in Db.BibContents
                          where asd.BibId == items.BibId &&
                                asd.TagNo == "245" &&
                                asd.Sfld == "a"
                          select asd.Value).FirstOrDefault(),
                 Sid = (from stat in Db.ItemStatus1
                        where stat.Id == items.StatusId 
                        select stat.Description).FirstOrDefault(),

                 Option = DD.Option,
                 CurrItemNo = DD.ItemNumber
             }).ToList();

您必須檢查DD的值是否為null0 s,而不是items

var model = (from items in Db.Items
    where 
    (
       (DD.ItemNo == null || DD.ItemNo == String.Empty) 
       || (items.ItemNo.CompareTo(DD.FromItemNo) >= 0 && items.ItemNo.CompareTo(DD.ToItemNo) <= 0)
    ) 
    && (DD.InfoTypeId == 0 || (items.InfoTypeId == DD.InfoType)) 
    && (DD.CreatedOn == null || (items.CreatedOn >= DD.Start && items.CreatedOn <= DD.End)) 
    && (DD.StatusId == 0 || (items.StatusId == DD.Status))
    && (DD.LocationId == 0 || (items.LocationId == DD.Location)) 
    && (DD.CollectionId == 0 || (items.CollectionId == DD.Collection))
    select ...

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM