linq select 在 where 子句中
我有一个类和一个集合。
class A
{
B[] boxes;
}
class B
{
string boxNumber;
}
现在,我需要创建一个 A 类型的对象,该对象内部具有 B[],且只有偶数框编号。 谁能帮我处理 linq 查询吗?
i have a class and a collection with in it.
class A
{
B[] boxes;
}
class B
{
string boxNumber;
}
Now, i need to create an object of type A that internally has B[] with only even box numbers.
can anyone help me with the linq query?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此查询应该为您提供给定 A 中具有偶数框编号的框:
或者,如果您想要数组形式的结果:
This query should give you the boxes with even box numbers from a given A:
Or, if you want the result in array form: