我有一个包含日期时间项目列表的对象。我有另一个具有属性的列表
我想选择对象中的列表中的日期时间项目,前提是它与另一个列表中的项目之一匹配。我能够得到这些项目,但我不知道如何基本上写“如果当前项目与此列表中的任何项目匹配”。
到目前为止的 LINQ 就像
from item in ObjectWithList.DateList
from compareItem in OtherDateTimeList
where item = //Here is there I run into trouble, how would I loop through the compareitems?
谢谢
编辑 我需要在此 LINQ 中完成此操作,因为这只是整个 LINQ 的一部分。