我正在构建一个搜索功能,该功能需要返回按相关性排序的列表。
IList<ProjectDTO> projects = new List<ProjectDTO>();
projects = GetSomeProjects();
List<ProjectDTO> rawSearchResults = new List<ProjectDTO>();
//<snip> - do the various search functions here and write to the rawSearchResults
//now take the raw list of projects and group them into project number and
//number of search returns.
//we will sort by number of search returns and then last updated date
var orderedProjects = rawSearchResults.GroupBy(x => x.ProjectNbr)
.Select(x => new
{
Count = x.Count(),
ProjectNbr = x.Key,
LastUpdated = x.First().UpdatedDateTime
})
.OrderByDescending(x => x.Count)
.ThenByDescending(x => x.LastUpdated);
到目前为止,一切都很好; “orderedProjects”变量以正确的顺序返回我的列表。但是,下一步我需要整个对象。当我尝试查询以获取原始对象类型时,我的结果会丢失它们的顺序。回想起来,这是有道理的,但我需要找到解决方法。
projects = (from p in projects
where orderedProjects.Any(o => o.ProjectNbr == p.ProjectNbr)
select p).ToList();
是否有一种 LINQ 友好的方法来保留上述项目查询中的顺序?
我可以遍历orderedProject 列表并获取每个项目,但这不是很有效。我也可以在原始的 orderedProjects 查询中重建整个对象,但如果可能的话,我想避免这种情况。