コード例 #1
0
 public IEnumerable <TResult> GetAll <TResult>(Expression <Func <T, TResult> > selector, params Expression <Func <T, object> >[] includePaths)
 {
     return(GetAll(selector, RepositoryHelper.BuildFetchStrategy(includePaths)));
 }
コード例 #2
0
 public IEnumerable <T> GetAll(IQueryOptions <T> queryOptions, params Expression <Func <T, object> >[] includePaths)
 {
     return(GetAll(queryOptions, RepositoryHelper.BuildFetchStrategy(includePaths)));
 }
コード例 #3
0
 public IEnumerable <T> GetAll(IQueryOptions <T> queryOptions, params string[] includePaths)
 {
     return(GetAll(queryOptions, RepositoryHelper.BuildFetchStrategy <T>(includePaths)));
 }
コード例 #4
0
 public IEnumerable <T> GetAll(params Expression <Func <T, object> >[] includePaths)
 {
     return(GetAll(RepositoryHelper.BuildFetchStrategy <T>(includePaths)));
 }
コード例 #5
0
 public IEnumerable <T> GetAll(params string[] includePaths)
 {
     return(GetAll(RepositoryHelper.BuildFetchStrategy <T>(includePaths)));
 }
コード例 #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)));
 }