我是新來的實體框架,我知道在SQL計數代碼,但在EF中是什麼?實體框架中的計數代碼是什麼?
select COUNT(*)
from Factor f
left join FactorItems FI on f.FactorID=FI.FactorRef
,這是我的實體代碼:
var CountOfitem = (from FI in context.FactorItems
join P in context.tblparts on FI.PartRef equals P.PartsID
where (FI.FactorRef == FactorID)
select new
{
gridcount = FI.Rowno
}
我怎樣才能數清我select new
?
怎麼樣'Count'。如果使用流暢的API而不是查詢一個,則更容易 – BradleyDotNET
親愛的@BradleyDotNET我無法得到什麼是繁瑣的API?代碼是什麼? –
@AliEshghi流利的API:https://en.wikipedia.org/wiki/Fluent_interface – Amy