gpt4 book ai didi

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

转载 作者:可可西里 更新时间:2023-11-01 08:06:22 24 4
gpt4 key购买 nike

我有一个产品集合,每个产品对象都有自己的 ProductImages 集合。每个 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 的列表其中可能包含对您有用的信息。

关于c# - 使用 linq 查询集合的子集合,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3077810/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com