| | |
| | | Task SaveAsync(); |
| | | |
| | | |
| | | ISugarQueryable<T> GetAllAsync(); |
| | | |
| | | ISugarQueryable<T> GetAll(); |
| | | Task<List<T>> GetAllAsync(); |
| | | T GetOneById(int id); |
| | | Task<T> GetOneByIdAsync(int id); |
| | | Task<T> GetOneByIdAsync1(int id); |
| | | |
| | | List<T> GetModels(string sqlString); |
| | | |
| | | T GetModel(string sqlString); |
| | | |
| | | ISugarQueryable<T> GetAllWhereAsync(Expression<Func<T, bool>> predicate); |
| | | ISugarQueryable<T> GeTAllByPageAsync(Expression<Func<T, bool>> predicate,int pageSize,int pageIndex, out int count); |
| | | ISugarQueryable<T> GetAllByOrderAsync(Expression<Func<T, bool>> predicate, bool asc = true); |
| | | ISugarQueryable<T> GetAllByOrderPageAsync(Expression<Func<T, bool>> predicate, int pageSize , int pageIndex , out int count,bool asc = true); |
| | | ISugarQueryable<T> GetAllWhere(Expression<Func<T, bool>> predicate); |
| | | ISugarQueryable<T> GeTAllByPage(Expression<Func<T, bool>> predicate,int pageSize,int pageIndex, out int count); |
| | | ISugarQueryable<T> GetAllByOrder(Expression<Func<T, bool>> predicate, bool asc = true); |
| | | ISugarQueryable<T> GetAllByOrderPage(Expression<Func<T, bool>> predicate, int pageSize , int pageIndex , out int count,bool asc = true); |
| | | } |
| | | } |