1
Answer

Can any one convert my SQL Query to Linq Query using VB.NET

Manoj Tandon

Manoj Tandon

13y
2.1k
1
Please convert this to linq query using vb

select sum(tr.AmountBeforeTax) as AmountBeforeTax ,sum(tr.Nett_Total) as NettTotal,l.Name,tl.taxName,tl.Gl_Account 
from transactions tr inner join locations l on
tr.Location_id = l.ID inner join taxlists tl on
l.taxscheme_ID = tl.taxscheme_id
group by l.ID,l.Name,tl.taxname,tl.gl_Account
Answers (1)