0
我有一個2表,我做了一些連接以基於某些要求返回記錄列表。 我能夠通過查詢爲我的requiremnet和fecth記錄編寫一個組,但我需要Linq查詢中的相同內容。 我的SQL查詢:如何在linq C#中使用group by並獲取記錄列表
select
MiscServiceDesc,
sum(PaymentAmount),
count(PaymentAmount)
from
MiscTransaction MT
join MiscService MS
on MT.MiscServiceID = MS.MiscServiceID
group by
MiscServiceDesc
其中MiscTransaction和MiscService是我的兩個表。
任何幫助? 在此先感謝
我需要一個加入時。 – Santosh
@Santosh它的寫法是一樣的,加入或不加入。 – Magnus
也檢查此帖:http://stackoverflow.com/questions/27730575/linq-to-sql-left-outer-join-with-group-by-and-having-clause –