mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-07-17 01:46:30 +08:00
feat: 打印增加高级查询
This commit is contained in:
parent
7ab6c5393f
commit
c2cdc65cbe
@ -39,6 +39,11 @@ namespace OpenAuth.App
|
||||
objs = objs.Where(u => u.Name.Contains(request.key));
|
||||
}
|
||||
|
||||
if (!string.IsNullOrEmpty(request.sqlWhere))
|
||||
{
|
||||
objs = objs.Where(request.sqlWhere);
|
||||
}
|
||||
|
||||
var columnnames = columnFields.Select(u => u.ColumnName);
|
||||
|
||||
var propertyStr = string.Join(',', columnnames);
|
||||
|
Loading…
Reference in New Issue
Block a user