Ejemplo n.º 1
0
 public List <GroupInfo> GetList(string where, object parameters, int pageIndex, int pageSize, string orderBy, ref int total)
 {
     //db.Queryable<Student>().Where("name=@name", new { name = value }).ToList();
     return(DataAccessProxy.GetListPage <GroupInfo>(where, parameters, orderBy, pageIndex, pageSize, ref total));
 }