You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

106 lines
3.3 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using SqlSugar;
using System.Linq.Expressions;
namespace Txgy.RBS.IDAL
{
public interface IBaseService
{
#region Query
/// <summary>
/// 根据id查询实体
/// </summary>
/// <param name="id"></param>
/// <returns></returns>
T Find<T>(int id) where T : class;
/// <summary>
/// 提供对单表的查询
/// </summary>
/// <returns>ISugarQueryable类型集合</returns>
[Obsolete("尽量避免使用using 带表达式目录树的 代替")]
ISugarQueryable<T> Set<T>() where T : class;
/// <summary>
/// 查询
/// </summary>
/// <typeparam name="T"></typeparam>
/// <param name="funcWhere"></param>
/// <returns></returns>
ISugarQueryable<T> Query<T>(Expression<Func<T, bool>> funcWhere) where T : class;
/// <summary>
/// 分页查询
/// </summary>
/// <typeparam name="T"></typeparam>
/// <typeparam name="S"></typeparam>
/// <param name="funcWhere"></param>
/// <param name="pageSize"></param>
/// <param name="pageIndex"></param>
/// <param name="funcOrderby"></param>
/// <param name="isAsc"></param>
/// <returns></returns>
PagingData<T> QueryPage<T>(Expression<Func<T, bool>> funcWhere, int pageSize, int pageIndex, Expression<Func<T, object>> funcOrderby, bool isAsc = true) where T : class;
#endregion
#region Add
/// <summary>
/// 新增数据即时Commit
/// </summary>
/// <param name="t"></param>
/// <returns>返回带主键的实体</returns>
T Insert<T>(T t) where T : class, new();
/// <summary>
/// 新增数据即时Commit
/// 多条sql 一个连接,事务插入
/// </summary>
/// <param name="tList"></param>
IEnumerable<T> Insert<T>(List<T> tList) where T : class, new();
#endregion
#region Update
/// <summary>
/// 更新数据即时Commit
/// </summary>
/// <param name="t"></param>
void Update<T>(T t) where T : class, new();
/// <summary>
/// 更新数据即时Commit
/// </summary>
/// <param name="tList"></param>
void Update<T>(List<T> tList) where T : class, new();
#endregion
#region Delete
/// <summary>
/// 根据主键删除数据即时Commit
/// </summary>
/// <param name="t"></param>
void Delete<T>(int Id) where T : class, new();
/// <su+mary>
/// 删除数据即时Commit
/// </summary>
/// <param name="t"></param>
void Delete<T>(T t) where T : class, new();
/// <summary>
/// 删除数据即时Commit
/// </summary>
/// <param name="tList"></param>
void Delete<T>(List<T> tList) where T : class;
#endregion
#region Other
/// <summary>
/// 执行sql 返回集合
/// </summary>
/// <typeparam name="T"></typeparam>
/// <param name="sql"></param>
/// <returns></returns>
ISugarQueryable<T> ExcuteQuery<T>(string sql) where T : class, new();
#endregion
}
}