|
|
@ -128,6 +128,8 @@ namespace Tiobon.Core.IServices.BASE |
|
|
|
Task<List<TEntity>> Query(string where); |
|
|
|
Task<List<TEntity>> Query(string where); |
|
|
|
Task<List<TEntity>> Query(Expression<Func<TEntity, bool>> whereExpression); |
|
|
|
Task<List<TEntity>> Query(Expression<Func<TEntity, bool>> whereExpression); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Task<List<TEntityDto>> QueryDto(Expression<Func<TEntity, bool>> whereExpression); |
|
|
|
|
|
|
|
|
|
|
|
Task<TEntityDto> QuerySingleDto(Expression<Func<TEntity, bool>> whereExpression); |
|
|
|
Task<TEntityDto> QuerySingleDto(Expression<Func<TEntity, bool>> whereExpression); |
|
|
|
Task<List<TEntity>> Query(Expression<Func<TEntity, bool>> whereExpression, string orderByFields); |
|
|
|
Task<List<TEntity>> Query(Expression<Func<TEntity, bool>> whereExpression, string orderByFields); |
|
|
|
Task<List<TResult>> Query<TResult>(Expression<Func<TEntity, TResult>> expression); |
|
|
|
Task<List<TResult>> Query<TResult>(Expression<Func<TEntity, TResult>> expression); |
|
|
|