From f1c5354c5dd7c925cea4101ec432d47e16170fd1 Mon Sep 17 00:00:00 2001 From: zhichao lei <442149704@qq.com> Date: Wed, 11 Nov 2020 17:57:23 +0800 Subject: [PATCH] bug --- .../Areas/LR_OAModule/Controllers/NoticeController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_OAModule/Controllers/NoticeController.cs b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_OAModule/Controllers/NoticeController.cs index 58e0cc085..cbfd94505 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_OAModule/Controllers/NoticeController.cs +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_OAModule/Controllers/NoticeController.cs @@ -188,7 +188,7 @@ namespace Learun.Application.Web.Areas.LR_OAModule.Controllers var userinfo = LoginUserInfo.Get(); Pagination paginationobj = new Pagination(); var newsList = noticeIBLL.GetList(keyword, userinfo.userId, categoryId). - Select(a => a.F_Status == "2"); + Where(a => a.F_Status == "2"); var newsListOfSelf = new List(); foreach (var newsitemEntity in newsList)