这是使用北风数据库的书中的示例。=> 是什么意思?
Northwind db = new Northwind(@"Data Source=.\SQLEXPRESS;InitialCatalog=Northwind");
var orders = db.Customers
.Where(c => c.Country == "USA" && c.Region == "WA")
.SelectMany(c => c.Orders);
Console.WriteLine(orders.GetType());
他们为什么不写
Where(c.Country == "USA" && c.Regian == "WA")