Example #1
0
 public static List <U> GetRange <T, U>(this BaseRepositoryEF <T, int> repository, string predicate, string order) where T : class
 {
     return(repository.GetRange <T, int, U>(predicate, order));
 }
Example #2
0
 public static List <U> GetRange <T, U>(this BaseRepositoryEF <T, string> repository, Expression <Func <T, bool> > predicate, string order) where T : class
 {
     return(repository.GetRange <T, string, U>(predicate, order));
 }