将Where 与.Select Linq 一起使用
我有一个场景,我必须在 LINQ 中使用 .Select 和 where 。 以下是我的查询。
List<DTFlight> testList = _ctrFlightList.Select(i => new DTFlight() { AirLineName = i.AirLineName,ArrivalDate = i.ArrivalDate }).ToList();
我想使用 where(添加条件) 到这个查询。
请帮忙... 谢谢。
I have a scenario where i have to use .Select with where in LINQ.
Below is my query.
List<DTFlight> testList = _ctrFlightList.Select(i => new DTFlight() { AirLineName = i.AirLineName,ArrivalDate = i.ArrivalDate }).ToList();
I want ti use where(add condition) to this query.
Please Help...
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我建议您使用Where:
Where返回一个IEnumerable,这样您就可以在其上应用您的Select。
I suggest you this use of Where :
Where returns a IEnumerable, so you can apply your Select on it.
只需在
Select
之前添加Where
即可:Simply add the
Where
before theSelect
:问题是什么?
比如……你需要什么条件?
What is the problem?
for example... What condition do you need?