我正在尝试以下代码:
public IList<Brand> GetMobileDeviceBrands()
{
var dataContext = dataContextFactory.CreateContext();
var brands = (from b in dataContext.Brands
join d in dataContext.Devices on b.ID equals d.BrandID
where d.DeviceTypeID != 1
select b).OrderBy(b => b.Name).Distinct().ToList();
return brands; // not ordered by Name here
}
但没有按预期得到有序的结果。
如果我orderBy
在控制器中写为:
var Brands = devicesListService.GetMobileDeviceBrands().OrderBy(b => b.Name).ToList();
它做得很好。我不知道出了什么问题。