當我使用Max()方法時,它給了我錯誤的地方.ToList()'LINQ .SalesTaxRate'不包含'ToList'的定義,並且沒有找到接受類型'LINQ.SalesTaxRate'的第一個參數的擴展方法'ToList'(可以找到缺少使用指令或程序集引用嗎?)'LINQ.SalesTaxRate'不包含'ToList'的定義,也沒有接受第一個參數的擴展方法'ToList'
SalesTaxRate是我的表名。
private void Button_Click_7(object sender, RoutedEventArgs e)
{
using (LinqContainer context = new LinqContainer())
{
var salesTaxRateList = (from c in context.SalesTaxRates
orderby c.SalesTaxRateID
select c).Max()
.ToList();
grid.ItemsSource = salesTaxRateList;
}
您正在使用GRID僅顯示一個結果。 Max()只會返回一個值,所以一個網格可能不是你想要的。 – Pleun