feat: 打印增加高级查询

This commit is contained in:
wintel 2025-05-13 21:46:31 +08:00
parent 7ab6c5393f
commit c2cdc65cbe

View File

@ -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);