Cannot implicitly convert type System.Collections.Generic.IEnumerable<> to bool

匿名 (未验证) 提交于 2019-12-03 02:26:02

问题:

I'm developing an ASP.NET MVC 4 Application and I'm trying to run this Lambda expression in Entity Framework 5.

var customer = db.GNL_Customer.Where(d => d.GNL_City.FKProvinceID == advancedProvinceID || advancedProvinceID == null)             .Where(d => d.FKCityID == advancedCityID || advancedCityID == null)             .Where(d => d.FKDepartmentStoreID == advancedDepartmentStoreID || advancedDepartmentStoreID == null)             .Where(d => d.GNL_CustomerLaptopProduct.Where(r => String.Compare(r.BrandName, brandID) == 0 || brandID == null)); 

I get this error :

Cannot implicitly convert type 'System.Collections.Generic.IEnumerable<ITKaranDomain.GNL_CustomerLaptopProduct>' to 'bool'

I know that the last where clause is wrong but I don't know how to correct it.

回答1:

You might want another .Any instead of a .Where in your .Any clause at the end:

var customer = db.GNL_Customer.Where(d => d.GNL_City.FKProvinceID == advancedProvinceID || advancedProvinceID == null)             .Where(d => d.FKCityID == advancedCityID || advancedCityID == null)             .Where(d => d.FKDepartmentStoreID == advancedDepartmentStoreID || advancedDepartmentStoreID == null)             .Any(d => d.GNL_CustomerLaptopProduct.Any(r => String.Compare(r.BrandName, brandID) == 0 || brandID == null)); 


回答2:

Use Where ( Any ) in last statement to select customers which have at least one product satisfying your conditions:

var customer = db.GNL_Customer    .Where(d => d.GNL_City.FKProvinceID == advancedProvinceID || advancedProvinceID == null)    .Where(d => d.FKCityID == advancedCityID || advancedCityID == null)    .Where(d => d.FKDepartmentStoreID == advancedDepartmentStoreID || advancedDepartmentStoreID == null)    .Where(d => brandID == null || d.GNL_CustomerLaptopProduct.Any(r => r.BrandName == brandID)); 


标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!