I have written a sql statement I need to convert to this in to LINQ.I am not really familiar with LINQ.
SELECT (SELECT ISNULL(SUM(canning.intQuantity), 0) FROM tblCanning AS canning WHERE canning.strProdNo = 0073059001) -
(SELECT ISNULL(SUM(tx.intQuantity), 0) FROM SS_tblTransaction AS tx WHERE tx.strProductNo = 0073059001) AS remain
studio7t7
Member
81 Points
152 Posts
sql to linq
May 08, 2012 10:21 AM|LINK
Hi,
I have written a sql statement I need to convert to this in to LINQ.I am not really familiar with LINQ.
Can anybody help me
Thanks
pierrefrc
Participant
947 Points
201 Posts
Re: sql to linq
May 08, 2012 12:13 PM|LINK
Hi
you can use:
I hope this help