我只想知道编写存储库方法的最佳实践.问题是决定编写上下文没有延迟加载的存储库.如果它是GetById,你如何命名你的方法,但不清楚导航包含在实体中.
解决方法
我在我的存储库基类中使用以下内容,以允许检索实体以及用户指定的依赖关系/关系列表:
@H_404_10@protected DbSet<T> Objects { get; private set; }
protected YourDatabaseContext Context { get; private set; }
public virtual T GetByID( int id,params string[] children )
{
if( children == null || children.Length == 0 )
{
return Objects.SingleOrDefault( e => e.ID == id );
}
DbQuery<T> query = children.Aggregate<string,DbQuery<T>>( Objects,( current,child ) => current.Include( child ) );
return query.SingleOrDefault( e => e.ID == id );
}
代码使用EF4 / CTP5,因此使用Db *类,但转换回正常的EF4类(例如ObjectSet而不是DbSet)是微不足道的.
这将使用如下:
@H_404_10@var product = productsRepository.GetByID( 42,"Category","Orders.OrderLines" );