Question Help on converting sql to LINQ

kgv

New member
Joined
Jul 18, 2011
Messages
2
Programming Experience
10+
Could some one help on converting following sql to a LinQ?

select SUM(T1.CK_AMT) from (select DISTINCT A.SEQ_NUM,A.CK_AMT AS CK_AMT from table1 A where A.SRC ='D' AND A.REASON_CD <> 'DELETE') T1
 
Back
Top