我有以下 linq -
var quantity = (from p in context.StoreInventory
where p.BookId== BookId
&& p.StoreAddress == StoreAddress
select p).Sum(i => i.Quantity);
我收到错误 -
不支持“求和”方法
谁能告诉我原因和需要的更改。