使用 linq 过滤列表
作为 linq 的新手,我在尝试将过滤器应用于 List 对象时遇到问题。这就是我到目前为止所拥有的
var filter = productList.GroupBy(a => a.Product.FamilySku).Select(grp => grp.OrderByDescending(a => a.Product.FamilySku).First());
这有效,除了如果 a.Product.IsFamily != true
我想不应用过滤器,我想添加一个 except 子句:
Except(a.Product.IsFamily != true)
所以在伪代码中,我想按所有 Product.FamilySku 进行分组但如果 Product.IsFamily != true 则不对它们进行分组。
谢谢你的帮助
Being new to linq, I am having trouble trying to apply a filter to a List object. This is what I have so far
var filter = productList.GroupBy(a => a.Product.FamilySku).Select(grp => grp.OrderByDescending(a => a.Product.FamilySku).First());
This works except I want to not apply the filter if the a.Product.IsFamily != true
I want to add an except clause:
Except(a.Product.IsFamily != true)
So in pseudo code, I want to group by all the Product.FamilySku's but not group them if Product.IsFamily != true.
Thx for the help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果您想完全排除 IsFamily 为 false 的产品,则其他答案有效。但是,如果您想要的是让它们出现在过滤列表中,但不分组,那么您可以在最后像这样 Concat() 它们:
如果您不想更改,可能有更好的方法来做到这一点他们的命令。
The other answers work if you want to completely leave out the products where IsFamily is false. But if what you want is for them to be in the filtered list, but not grouped, then you could Concat() them on at the end like this:
There may be a better way to do it if you don't want to change their order.
只需在分组之前放入
Where()
过滤器即可:Just put in a
Where()
filter before the grouping:看起来你只需要使用Where()方法:
Looks like you just need to use a the Where() method: