代码:

System.Linq.Expressions.Expression<Func<Domain.S_ROLE, bool>> expressWhere1 = (c => c.R_NAME.Contains(keywords));
System.Linq.Expressions.Expression
<Func<Domain.S_ROLE, int>> orderBy1 = c => c.R_ORDERID; Func<IQueryable<Domain.S_ROLE>, List<Domain.S_ROLE>> selector1 = (c=>c.Select(p => new Domain.S_ROLE (){ R_ID = p.R_ID, R_NAME= p.R_NAME }).ToList<Domain.S_ROLE>());

分别是 条件、排序、字段过滤。

 

posted on 2017-05-31 17:29  邢帅杰  阅读(386)  评论(0编辑  收藏  举报