c# – 使用linq查询集合的子集合

前端之家收集整理的这篇文章主要介绍了c# – 使用linq查询集合的子集合前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个产品的集合,每个产品对象都有它自己的Product Images集合.每个ProductImage对象都有一个IsMainImage bool字段.我很难建立一个这样的Linq查询
select products.productimages.imagename where products.productid == 1 and     
product.productimages.ismainimage == true

任何人都可以帮助我弄清楚这一点,指出一个在线资源,我可以学习如何编写这样的linq查询,或者两者兼而有之?

感谢您的帮助!

解决方法

尝试像
from product in products
where product.productid == 1
from image in product.productimages
where image.ismainimage
select image.imagename

我也找到了这个可能包含您的信息的101 linq queries的这个列表.

原文链接:https://www.f2er.com/csharp/94922.html

猜你在找的C#相关文章