Exemplo n.º 1
0
 public IEnumerable <TResult> GetAll <TResult>(Expression <Func <T, TResult> > selector, params Expression <Func <T, object> >[] includePaths)
 {
     return(GetAll(selector, RepositoryHelper.BuildFetchStrategy(includePaths)));
 }
Exemplo n.º 2
0
 public IEnumerable <T> GetAll(IQueryOptions <T> queryOptions, params Expression <Func <T, object> >[] includePaths)
 {
     return(GetAll(queryOptions, RepositoryHelper.BuildFetchStrategy(includePaths)));
 }
Exemplo n.º 3
0
 public IEnumerable <T> GetAll(IQueryOptions <T> queryOptions, params string[] includePaths)
 {
     return(GetAll(queryOptions, RepositoryHelper.BuildFetchStrategy <T>(includePaths)));
 }
Exemplo n.º 4
0
 public IEnumerable <T> GetAll(params Expression <Func <T, object> >[] includePaths)
 {
     return(GetAll(RepositoryHelper.BuildFetchStrategy <T>(includePaths)));
 }
Exemplo n.º 5
0
 public IEnumerable <T> GetAll(params string[] includePaths)
 {
     return(GetAll(RepositoryHelper.BuildFetchStrategy <T>(includePaths)));
 }
Exemplo n.º 6
0
 public IEnumerable <TResult> GetAll <TResult>(Expression <Func <T, TResult> > selector, IQueryOptions <T> queryOptions, params string[] includePaths)
 {
     return(GetAll(selector, queryOptions, RepositoryHelper.BuildFetchStrategy <T>(includePaths)));
 }