最近,我开始在项目中成功使用EF+,但是有时我遇到一个问题,我有一组实体,需要为其运行单独的查询。
因此,如果我有20个客户,则需要分别运行20个查询。我想知道是否有办法在foreach循环中使用EF + FutureValue()避免这种情况。
请参阅以下示例代码:
foreach (var customer in customers)
{
customer.SomeValue = ctx.SomeDatabaseTable.Where(myCondition).FutureValue();
// this would run 20 times ... any way how to run all of the 20 queries at once?
}
答案 0 :(得分:1)
首先需要生成所有“ QueryFuture”查询,然后才能使用它们。
所以两个循环应该可以使它工作。
var futureQueries = new List<BaseQueryFuture>();
// create all query futures
for(int i = 0; i < customers.Length; i++)
{
futureQueries.Add(ctx.SomeDatabaseTable.Where(myCondition).FutureValue());
}
// assign result (the first solved will make the call to the DB)
for(int i = 0; i < customers.Length; i++)
{
customer.SomeValue = ((QueryFutureValue<SomeValueType>)futureQueries[i]).Value;
}