Linq-to-SQL的性能优化

Linq-to-SQL的性能优化,根据我的个人实践和效果降序排列,如下:

1. 预编译 CompiledQuery (如果执行次数不止一次的话)

/// 


/// Utility class to store compiled queries
/// 

public static class QueriesUtility
{
  /// 
  /// Gets the query that returns categories with more than five products.
  /// 

  /// The query containing categories with more than five products.
  public static Funcint, IEnumerable>

你可能感兴趣的:(linq,sql,性能优化)