我使用EF 4和C#。
我需要使用属于两个不同实体的两个属性来排序此查询的结果。
就我而言,我想按gt.GroupTypeId
及其subset by 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);
关于c# - EF和Linq OrderBy使用两个参数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7650216/