关于c#:EF和Linq OrderBy使用两个参数

EF and Linq OrderBy using two Parameters

我使用EF4和C。

我需要用属于两个不同实体的两个属性来排序这个查询的结果。

在我的情况下,我希望由gt.GroupTypeId及其subset by cnt.ContentId订购。

附言:我不确定我的头衔是否合适,如果你认为不合适,请告诉我我会改变它的:-)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
            };

简单的例子:

1
var orderedList = cnt.OrderBy(x => x.GroupTypeId).ThenBy(x => x.ContentId);