我需要根据元组值列表返回一组MyClass
。此元组值用于从数据库中获取正确的对象。
为了避免多次调用db,我尝试使用Union
构建查询,然后只调用.ToList()
方法从db获取所有数据。
在这种情况下,如果查询中没有结果,我需要返回一个默认值对象。当我应用DefaultIfEmpty
方法时,我收到错误。我的想法是,如果我收到15个元组的List
,我需要返回15个结果,如果没有结果,则应使用内置的默认Class
值填充它们。
public ISet<MyClass> Post([FromBody] IList<Tuple<string, string>> codesToFilter)
{
IEnumerable<MyClass> filteredObjectsByCodes = new List<MyClass>();
foreach (Tuple<string, string> tupleElement in codesToFilter)
{
//Class built based on parameters to be returned if there are no records in db
MyClass classDefaultValue = new MyClass(tupleElement.Item1,
"A default property string",
"Default text",
tupleElement.Item2);
var filteredObjects = (from entity in DatabaseContext.MyEntities
where (entity.Property1 == tupleElement.Item1 &&
entity.Property4== tupleElement.Item2)
select new MyClass
(
entity.Property1,
entity.Property2,
entity.Property3,
entity.Property4
)
).DefaultIfEmpty(classDefaultValue);
filteredObjectsByCodes = filteredObjectsByCodes.Union(filteredObjects);
}
var filteredObjectsResult = new HashSet<MyClass>((filteredObjectsByCodes.ToList()));
return filteredObjectsResult;
}
如何以优化的方式实现这一目标?
答案 0 :(得分:1)
也许您可以删除DefaultIfEmpty并稍后添加缺少的MyClasses。
IEnumerable<MyClass> results = filteredObjectsByCodes.ToList();
var missing = codesToFilter
.Where(c => results.All(f => f.Property1 != c.Item1 && f.Property4 != c.Item2))
.Select(c => new MyClass(tupleElement.Item1.. );
results = results.Union(missing);
return new HashSet<MyClass>(results);
答案 1 :(得分:0)
在致电AsEnumerable
之前致电DefaultIfEmpty
。这是一个在首先在DB端执行没有意义的操作。从DB获取结果,如果为空,则让应用程序将默认项添加到序列中。
要避免在应用程序端执行Union
,您需要做的就是在联合各种数据库查询后应用AsEnumerable().DefaultIfEmpty(...)
调用。在汇总所有子查询之前,不需要执行DefaultIfEmpty
。