我希望使用OrderBy条件获得一些文件,但在我的方案顺序中没有工作。在这里,ProductSequence
已int
提交。
IList<ProViewModels> _newprd = iproRepository
.GetList(x => x.ProductId.Equals(ProductId))
.Select(x => new ProViewModels { ProductName = x.ProductName, DisplayName = x.DisplayName })
.OrderBy(x => x.ProOrder)
.ToList();
return _newprd;
答案 0 :(得分:1)
从您的存储库中获取Products
列表。使用Select
,您可以将Products
列表转换为ProViewModels
列表。对于您的转换,您不会对ProOrder
的{{1}}属性进行拼写,因此将使用默认值。
基本上这意味着您的列表会被排序,但它们排序的值对于集合中的所有实例都是相同的。