|
@@ -146,7 +146,7 @@ namespace GxPress.Service.Implement.Topic
|
|
|
query.WhereIn("tede_topic.GroupId", groupIds);
|
|
|
}
|
|
|
if (!string.IsNullOrEmpty(request.Key))
|
|
|
- query.Where(n => n.OrWhereLike("tede_topic.Title", $"%{request.Key}%").OrWhereLike("tede_topic.TextContent", $"%{request.Key}%"));
|
|
|
+ query.Where(n => n.OrWhereLike("tede_topic.Title", $"%{request.Key}%").OrWhereLike("tede_topic.TextContent", $"%{request.Key}%").OrWhereLike("tede_user.Name", $"%{request.Key}%"));
|
|
|
//条数
|
|
|
var queryCount = query;
|
|
|
//公共
|