管理运营

This commit is contained in:
DESKTOP-H2PAFLR\Administrator
2023-10-11 16:56:25 +08:00
parent 30a7502701
commit 39b86ccdf0
13 changed files with 908 additions and 2 deletions

View File

@@ -202,6 +202,10 @@ namespace ZR.Repository
{
return Context.Queryable<T>();
}
public ISugarQueryable<T> Queryable(Expression<Func<T, bool>> expression)
{
return Context.Queryable<T>().Where(expression);
}
public List<T> SqlQueryToList(string sql, object obj = null)
{