code format fix

This commit is contained in:
jacob
2018-03-24 19:38:04 +08:00
parent 27b31e254b
commit cf99dbc7e7

View File

@@ -136,7 +136,8 @@ namespace SqlSugar
return Context.Queryable<T>().Where(whereExpression).Any();
}
public int Count(Expression<Func<T,bool>> whereExpression){
return Context.Queryable<T>().Where(whereExpression).Count();
return Context.Queryable<T>().Where(whereExpression).Count();
}
public bool Insert(T insertObj)