gpt4 book ai didi

c# - 过滤 LINQ 查询

转载 作者:行者123 更新时间:2023-12-02 01:10:48 27 4
gpt4 key购买 nike

这是我的查询。

var query = from g in dc.Group
join gm in dc.GroupMembers on g.ID equals gm.GroupID
where gm.UserID == UserID
select new {
id = g.ID,
name = g.Name,
pools = (from pool in g.Pool
// more stuff to populate pools

所以我必须执行一些过滤,但是当我尝试过滤时

var filter = query.Where(f => f.pools.[no access to list of columns]  

我无法访问“池”中的任何项目。有谁知道我如何才能访问它?

我想做的是:

var filterbyGame = query.Where(f = > f.pools.GameName == "TestGame");

请告诉我这是否可以通过我的设置实现。

谢谢大家。

最佳答案

在您的查询中,您不能执行Where(f => f.pools.GameName)因为 f 是一个 IEnumerable<>

这样的事情应该有效:

Where(f => f.pools.Any(p => p.GameName == "TestGame"))

关于c# - 过滤 LINQ 查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3070214/

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