Link to home
Start Free TrialLog in
Avatar of bmsdev
bmsdevFlag for United Kingdom of Great Britain and Northern Ireland

asked on

How do I convert this SQL into vb.net LINQ statement

I have got a SQL statement that I need to convert into a VB.NET LINQ statement.

Please see the below SQL statement.

Any help would be appericated.
SELECT cu_cursym, sum(netamount)
FROM BORDEREAU t1
INNER JOIN COMMON.CU t2 ON t1.ORIGCURRENCY = t2.CU_CURCDE
WHERE (t1.COVERCONTRACT = 'B09001074') AND (t1.BORDEREAUNO = 5)
group by cu_cursym

Open in new window

SOLUTION
Avatar of MikeToole
MikeToole
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial