Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前正在开发一个使用 LINQ 的 C# 项目。我想知道是否可以使用 Linq 制作一个“多重 OR 子句”,并将列表作为 where 的条目。
我的意思是这样的:
var listofId; var sqlQuery = from T in mytable where T.ReferenceId = listOfId select T;
关于如何做到这一点的任何想法?
谢谢
你可以使用包含
listOfId.Contains(T.ReferenceId);