重写LinqToSql查询以返回没有LoadWith的相同实例

时间:2011-05-24 15:37:45

标签: linq-to-sql compiled-query loadoptions

我正在调查CompiledQuery性能,但CompiledQuery对LoadWith过敏。

using (CustomDataContext myDC = new CustomDataContext())
{
  DataLoadOptions options = new DataLoadOptions();
  options.LoadWith<Customer>(c => c.Orders)
  myDC.LoadOptions = options;

  IQueryable<Customer> query = myDC.Customers.Where(filterExpr);
  List<Customer> result = query.ToList();
  return result;
}

此代码通过发出left join sql查询来填充每个Customer实例的Orders属性。如何在没有LoadWith的情况下重写查询以获得相同的结果(客户已填充Orders属性)?

1 个答案:

答案 0 :(得分:0)

我找到了一种在CompiledQuery中使用DataLoadOptions的方法。 http://www.mrkwatkins.co.uk/Blog/2010/05/16/Improving-LINQ-To-SQL-Performance-Part-2---Combining-Compiled-Queries-And-Load-Options

它涉及在编译时使DataLoadOptions实例可用,在CompiledQuery实例的生命周期内保持该DataLoadOptions实例,并在每次运行CompiledQuery时将DataLoadOption交换到不合适的位置。