我正在做这样的查询:
与加入public IEnumerable<ProblemsViewModel_Base> GetProblemsSearchClassification(string searchTerm)
{
var subjectProblems =
from p in aux_problem
join sub in Subject on p.aux_ClassificationID.Id equals sub.Id
where sub.Title.Contains(searchTerm)
orderby p.CreatedOn descending
select new ProblemsViewModel_Base
{
aux_CustomID = p.aux_CustomID
,
Id = p.aux_problemId.Value
,
title = p.aux_name
,
CreatedOn = p.CreatedOn.Value
};
return subjectProblems;
}
public IEnumerable<ProblemsViewModel_Base> GetProblemsSearchDetails(string searchTerm){
var detailsProblems = aux_problem
.Where(p => p.aux_CustomID.Contains(searchTerm))
.OrderByDescending(c => c.CreatedOn)
.Select(i => new ProblemsViewModel_Base
{
aux_CustomID = i.aux_CustomID
,
Id = i.aux_problemId.Value
,
title = i.aux_name
,
CreatedOn = i.CreatedOn.Value
});
return detailsProblems;}
经过三个查询,我加入并获得不同的结果:
var joinedResults = detailsResults.Union(requestorResults).Union(classificationResults);
var distinctResults = joinedResults.GroupBy(p => p.Id).Select(p => p.First())
我的问题出现在结果中,我与第二个查询(没有连接的查询)进行联合,结果不是有序的,但如果我避免这个查询,使用连接对所有查询进行联合,结果是有序的。
哪里出了问题?谢谢!
以我的经验.Union ()
.Distinct ()还有一些人会撤销命令在显示结果之前尝试排序,但在所有代码之后
请反馈
我找到了这样修改比较的解决方案:
var distinctResults = joinedResults.GroupBy(p => p.Id).Select(p => p.First()).OrderByDescending(p => p.CreatedOn);
我在所有查询中注释掉了OrderBy,因为我在做它之后,我想没有它,查询会更快。