コード例 #1
0
 public IQueryable <T> GetList <T>(object dbContext) where T : class
 {
     return(DefaultDataAccess.GetList <T>(dbContext));
 }
コード例 #2
0
 public IQueryable <T> GetList <T>(object dbContext, Expression <Func <T, bool> > predicate) where T : class
 {
     return(DefaultDataAccess.GetList <T>(dbContext, predicate));
 }