标签: sql-server entity-framework linq-to-entities
以下SQL语句的实体查询的linq是什么
Select * from table where id in (‘1’, ‘2’, ‘3’, …..So on Millions)
答案 0 :(得分:0)
将列表中的('1','2','3',...... ......等)放在列表中
然后下面是LINQ to Entity查询 - >
from t in tables where list.contains(t.id) select t