mirror of
https://github.com/AIDotNet/AntSK.git
synced 2026-02-17 22:10:14 +08:00
63 lines
3.7 KiB
C#
63 lines
3.7 KiB
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Linq.Expressions;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Xzy.KnowledgeBase.Domain.Model;
|
|
|
|
namespace Xzy.KnowledgeBase.Domain.Repositories.Base
|
|
{
|
|
public interface IRepository<T>
|
|
{
|
|
SqlSugarScope GetDB();
|
|
List<T> GetList();
|
|
Task<List<T>> GetListAsync();
|
|
List<T> GetList(Expression<Func<T, bool>> whereExpression);
|
|
Task<List<T>> GetListAsync(Expression<Func<T, bool>> whereExpression);
|
|
int Count(Expression<Func<T, bool>> whereExpression);
|
|
Task<int> CountAsync(Expression<Func<T, bool>> whereExpression);
|
|
PageList<T> GetPageList(Expression<Func<T, bool>> whereExpression, PageModel page);
|
|
PageList<P> GetPageList<P>(Expression<Func<T, bool>> whereExpression, PageModel page);
|
|
Task<PageList<T>> GetPageListAsync(Expression<Func<T, bool>> whereExpression, PageModel page);
|
|
Task<PageList<P>> GetPageListAsync<P>(Expression<Func<T, bool>> whereExpression, PageModel page);
|
|
PageList<T> GetPageList(Expression<Func<T, bool>> whereExpression, PageModel page, Expression<Func<T, object>> orderByExpression = null, OrderByType orderByType = OrderByType.Asc);
|
|
Task<PageList<T>> GetPageListAsync(Expression<Func<T, bool>> whereExpression, PageModel page, Expression<Func<T, object>> orderByExpression = null, OrderByType orderByType = OrderByType.Asc);
|
|
PageList<P> GetPageList<P>(Expression<Func<T, bool>> whereExpression, PageModel page, Expression<Func<T, object>> orderByExpression = null, OrderByType orderByType = OrderByType.Asc);
|
|
Task<PageList<P>> GetPageListAsync<P>(Expression<Func<T, bool>> whereExpression, PageModel page, Expression<Func<T, object>> orderByExpression = null, OrderByType orderByType = OrderByType.Asc);
|
|
PageList<T> GetPageList(List<IConditionalModel> conditionalList, PageModel page);
|
|
Task<PageList<T>> GetPageListAsync(List<IConditionalModel> conditionalList, PageModel page);
|
|
PageList<T> GetPageList(List<IConditionalModel> conditionalList, PageModel page, Expression<Func<T, object>> orderByExpression = null, OrderByType orderByType = OrderByType.Asc);
|
|
Task<PageList<T>> GetPageListAsync(List<IConditionalModel> conditionalList, PageModel page, Expression<Func<T, object>> orderByExpression = null, OrderByType orderByType = OrderByType.Asc);
|
|
T GetById(dynamic id);
|
|
Task<T> GetByIdAsync(dynamic id);
|
|
T GetSingle(Expression<Func<T, bool>> whereExpression);
|
|
Task<T> GetSingleAsync(Expression<Func<T, bool>> whereExpression);
|
|
T GetFirst(Expression<Func<T, bool>> whereExpression);
|
|
Task<T> GetFirstAsync(Expression<Func<T, bool>> whereExpression);
|
|
bool Insert(T obj);
|
|
Task<bool> InsertAsync(T obj);
|
|
bool InsertRange(List<T> objs);
|
|
Task<bool> InsertRangeAsync(List<T> objs);
|
|
int InsertReturnIdentity(T obj);
|
|
Task<int> InsertReturnIdentityAsync(T obj);
|
|
long InsertReturnBigIdentity(T obj);
|
|
Task<long> InsertReturnBigIdentityAsync(T obj);
|
|
bool DeleteByIds(dynamic[] ids);
|
|
Task<bool> DeleteByIdsAsync(dynamic[] ids);
|
|
bool Delete(dynamic id);
|
|
Task<bool> DeleteAsync(dynamic id);
|
|
bool Delete(T obj);
|
|
Task<bool> DeleteAsync(T obj);
|
|
bool Delete(Expression<Func<T, bool>> whereExpression);
|
|
Task<bool> DeleteAsync(Expression<Func<T, bool>> whereExpression);
|
|
bool Update(T obj);
|
|
Task<bool> UpdateAsync(T obj);
|
|
bool UpdateRange(List<T> objs);
|
|
Task<bool> UpdateRangeAsync(List<T> objs);
|
|
bool IsAny(Expression<Func<T, bool>> whereExpression);
|
|
Task<bool> IsAnyAsync(Expression<Func<T, bool>> whereExpression);
|
|
}
|
|
}
|