我有一个SQL查询,它选择前5000个数据,并有一些条件。现在我的问题是,如何从实体框架编写相同的查询?可能吗?我想知道从实体框架实现此查询的最有效方法。
查询:
select TOP 5000 * from MyData where Type=1 and UPC not in (
select UPC from MyData where Type=2 AND UPC IS NOT NULL)
C# 实体:
using (var ctx = new db_ProductionEntities())
{
//var items = ctx.MyData.Take(10).ToList(); need to know how to write query here
}
扬帆大鱼
相关分类