过滤属于对象的 porperty(List)

发布于 2024-10-04 13:18:19 字数 420 浏览 1 评论 0原文

现在我想返回一个 X 列表的序列,其 prop1.where(p=>pa==1)。 我可以用 Select 子句编写此内容,但我的对象有很多属性。

类似这样的内容(但采用真正的语法):

ctx.MyObject.Where(p=>p.state==1 && prop1.where(p=>p.a==1));

编辑: obj1 具有此 props(int a, List prop1) 且 Foo has (int b,int c).

Now i want to return a sequence that list of X that its prop1.where(p=>p.a==1).
i can write this with Select clause but my object has many properties.

something like this(but in true syntax):

ctx.MyObject.Where(p=>p.state==1 && prop1.where(p=>p.a==1));

EDIT: obj1 with this props(int a, List<Foo> prop1) and Foo has (int b,int c).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

同尘 2024-10-11 13:18:19

根据您想要执行的操作,尝试 Any 而不是 Where

ctx.MyObject.Where(p=>p.state==1 && prop1.Any(p2 => p2.a == 1))

或者正如您提到的,您可以使用 Select

ctx.MyObject
   .Where(p => p.state == 1)
   .Select(p => new
       {
           state = p.state,
           prop1 = p.prop1.Where(p2 => p2.a == 1),
           // other fields...
       }

Depending what you want to do, try Any instead of Where:

ctx.MyObject.Where(p=>p.state==1 && prop1.Any(p2 => p2.a == 1))

Or as you mentioned you can use Select:

ctx.MyObject
   .Where(p => p.state == 1)
   .Select(p => new
       {
           state = p.state,
           prop1 = p.prop1.Where(p2 => p2.a == 1),
           // other fields...
       }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文