EF和Linq OrderBy使用两个参数

前端之家收集整理的这篇文章主要介绍了EF和Linq OrderBy使用两个参数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用EF 4和C#.

我需要使用属于两个不同实体的两个属性对此查询的结果进行排序.

在我的情况下,我想通过gt.GroupTypeId及其子集由cnt.ContentId排序.

PS:我不知道我的标题是否合适,如果你不这么认为,让我知道我会改变它:-)

from cnt in context.CmsContents
            from gt in cnt.CmsGroupsTypes
            join t in context.CmsTypes
            on cnt.TypeContent equals t.TypeContent
            join m in context.CmsModes
            on cnt.ModeContent equals m.ModeContent
            orderby gt.GroupTypeId // Problem here
            select new
            {
            cnt.ContentId,cnt.Title,gt.TypeGroup,gt.GroupTypeId,TypeContentDescription = t.Description,ModeContentDescription = m.Description,cnt.IsPublished
            };

解决方法

简单的例子:
var orderedList = cnt.OrderBy(x => x.GroupTypeId).ThenBy(x => x.ContentId);
原文链接:https://www.f2er.com/mssql/75231.html

猜你在找的MsSQL相关文章