最好的 linq 查询是什么
我有一个日历对象的集合。日历有一个属性Id。
IEnumerable<Calendar> CalendarsToView;
我有另一个事件对象集合。事件对象具有 CalendarId 属性,
IEnumerable<CalendarEvent> Events;
我想过滤 Events 集合以仅返回 calendarId 位于 CalendarsToView 集合中的事件。
这样做的最好方法是什么?
I have a collection of Calendar objects. Calendar has a property Id.
IEnumerable<Calendar> CalendarsToView;
I have another collection of Event Objects. Event objects have a property of CalendarId
IEnumerable<CalendarEvent> Events;
i want to filter the Events collection to only return events where the calendarId is in the CalendarsToView collection.
what is the best way of doing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
加入
do a join
这需要内部等值连接:
这是使用哈希集实现此目的的另一种方法:
This calls for an inner, equijoin:
Here's another way of doing it with hash-sets: