另一个分配块!
基本上问题是我不能让我的输出按降序排列价格,同时保持按国家分组。
我知道这可能很简单,但我似乎无法理解。
有什么解决办法吗?
谢谢!
这是问题:“6. 允许用户按国家/地区降序查看销量前五的产品。(10 分)”
这是我的代码:
void MainWindow_Loaded(object sender, RoutedEventArgs e)
{
var q6 = (from t in northwind.Products
orderby t.UnitPrice descending
join o in northwind.Suppliers on t.SupplierID equals o.SupplierID
group t.UnitPrice by new {o.Country, t.UnitPrice} into grouped
select new
{
Output = grouped.Key
}).Take(5);
lbxTop5.ItemsSource = q6;
}