Manoj Tandon

Manoj Tandon

  • NA
  • 8
  • 7.2k

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

Jul 21 2011 6:14 AM
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)