You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.4 KiB
48 lines
1.4 KiB
using FreeSql;
|
|
using System.Linq.Expressions;
|
|
|
|
namespace Znyc.CloudCar.IRepository
|
|
{
|
|
public interface IRepositoryBase<TEntity, TKey> : IBaseRepository<TEntity, TKey> where TEntity : class
|
|
{
|
|
/// <summary>
|
|
/// 获得Dto
|
|
/// </summary>
|
|
/// <typeparam name="TDto"></typeparam>
|
|
/// <param name="id"></param>
|
|
/// <returns></returns>
|
|
Task<TDto> GetAsync<TDto>(TKey id);
|
|
|
|
/// <summary>
|
|
/// 根据条件获取实体
|
|
/// </summary>
|
|
/// <param name="exp"></param>
|
|
/// <returns></returns>
|
|
Task<TEntity> GetAsync(Expression<Func<TEntity, bool>> exp);
|
|
|
|
/// <summary>
|
|
/// 根据条件获取Dto
|
|
/// </summary>
|
|
/// <typeparam name="TDto"></typeparam>
|
|
/// <param name="exp"></param>
|
|
/// <returns></returns>
|
|
Task<TDto> GetAsync<TDto>(Expression<Func<TEntity, bool>> exp);
|
|
|
|
/// <summary>
|
|
/// 软删除
|
|
/// </summary>
|
|
/// <param name="id"></param>
|
|
/// <returns></returns>
|
|
Task<bool> SoftDeleteAsync(TKey id);
|
|
|
|
/// <summary>
|
|
/// 批量软删除
|
|
/// </summary>
|
|
/// <param name="ids"></param>
|
|
/// <returns></returns>
|
|
Task<bool> SoftDeleteAsync(TKey[] ids);
|
|
}
|
|
public interface IRepositoryBase<TEntity> : IRepositoryBase<TEntity, long> where TEntity : class
|
|
{
|
|
}
|
|
}
|