修改仓储Add方法参数
This commit is contained in:
@@ -10,7 +10,7 @@ namespace ZR.Repository
|
||||
public interface IBaseRepository<T> : ISimpleClient<T> where T : class, new()
|
||||
{
|
||||
#region add
|
||||
int Add(T t);
|
||||
int Add(T t, bool ignoreNull = true);
|
||||
|
||||
int Insert(List<T> t);
|
||||
int Insert(T parm, Expression<Func<T, object>> iClumns = null, bool ignoreNull = true);
|
||||
|
||||
Reference in New Issue
Block a user