79 lines
2.0 KiB
C#
79 lines
2.0 KiB
C#
using Autofac.Extras.DynamicProxy;
|
|
using CC.Yi.Common.Castle;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Linq.Expressions;
|
|
|
|
namespace CC.Yi.IBLL
|
|
{
|
|
[Intercept(typeof(CustomAutofacAop))]
|
|
public interface IBaseBll<T> where T : class, new()
|
|
{
|
|
#region
|
|
//得到全部实体
|
|
#endregion
|
|
IQueryable<T> GetAllEntities();
|
|
|
|
#region
|
|
//通过表达式得到实体
|
|
#endregion
|
|
IQueryable<T> GetEntities(Expression<Func<T, bool>> whereLambda);
|
|
|
|
#region
|
|
//通过表达式得到实体,分页版本
|
|
#endregion
|
|
IQueryable<T> GetPageEntities<S>(int pageSize, int pageIndex, out int total, Expression<Func<T, bool>> whereLambda, Expression<Func<T, S>> orderByLambda, bool isAsc);
|
|
|
|
#region
|
|
//通过表达式统计数量
|
|
#endregion
|
|
int GetCount(Expression<Func<T, bool>> whereLambda);
|
|
|
|
#region
|
|
//通过表达式分组
|
|
#endregion
|
|
IQueryable<IGrouping<S, T>> GetGroup<S>(Expression<Func<T, bool>> whereLambda, Expression<Func<T, S>> groupByLambda);
|
|
|
|
#region
|
|
//添加实体
|
|
#endregion
|
|
T Add(T entity);
|
|
|
|
#region
|
|
//添加多个实体
|
|
#endregion
|
|
bool Add(IEnumerable<T> entities);
|
|
|
|
#region
|
|
//更新实体
|
|
#endregion
|
|
bool Update(T entity);
|
|
|
|
#region
|
|
//更新实体部分属性
|
|
#endregion
|
|
bool Update(T entity, params string[] propertyNames);
|
|
|
|
#region
|
|
//删除实体
|
|
#endregion
|
|
bool Delete(T entity);
|
|
|
|
#region
|
|
//通过id删除实体
|
|
#endregion
|
|
bool Delete(int id);
|
|
|
|
#region
|
|
//通过id列表删除多个实体
|
|
#endregion
|
|
bool Delete(IEnumerable<int> ids);
|
|
|
|
#region
|
|
//通过表达式删除实体
|
|
#endregion
|
|
bool Delete(Expression<Func<T, bool>> where);
|
|
}
|
|
}
|