繁体   English   中英

使用实体框架将表连接到列表

[英]Joining table to a list using Entity Framework

我有以下的Entity Framework函数,它将表连接到列表。 serviceSuburbList中的每个项目都包含两个整数,即ServiceIdSuburbId

public List<SearchResults> GetSearchResultsList(List<ServiceSuburbPair> serviceSuburbList)
{
    var srtList = new List<SearchResults>();
    srtList = DataContext.Set<SearchResults>()
                         .AsEnumerable()
                         .Where(x => serviceSuburbList.Any(m => m.ServiceId == x.ServiceId && 
                                                                m.SuburbId == x.SuburbId))
                         .ToList();

    return srtList;
}

显然, AsEnumerable了我的表现。 我不确定执行此操作的另一种方法。 基本上,我有SearchResults表,并且想查找与serviceSuburbList匹配的记录。

如果serviceSuburbList的长度不大,则可以使几个Union

var table = DataContext.Set<SearchResults>();
IQuerable<SearchResults> query = null;
foreach(var y in serviceSuburbList)
{
    var temp = table.Where(x => x.ServiceId == y.ServiceId && x.SuburbId == y.SuburbId);
    query = query == null ? temp : query.Union(temp);
}

var srtList = query.ToList();

另一个解决方案-使用Z.EntityFramework.Plus.EF6库:

var srtList = serviceSuburbList.Select(y => 
                 ctx.Customer.DeferredFirstOrDefault(
                    x => x.ServiceId == y.ServiceId && x.SuburbId == y.SuburbId
                 ).FutureValue()
              ).ToList().Select(x => x.Value).Where(x => x != null).ToList();
//all queries together as a batch will be sent to database 
//when first time .Value property will be requested

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM