Here i am joining a 2 DataTables for group summation. From this query i could retrieve columns which are in the group i.e.., code,subcode -> sum1 , but i also need columns not only in group but also other coulmns from the table[c.glaccount,j.type in select new], which is possible from SQL queries.
var currentbalances = (from c in _currentPeriodTaxBalanceTable.AsEnumerable()
join j in dtAcsTaxCode.AsEnumerable() on
c.Field<int>(TaxCodeNGLAccountEntity.GLAccountKey) equals
j.Field<int>(TaxCodeNGLAccountEntity.GLAccountKey)
// enter code here
group c by new {code = j.Field<string>("tax_code"), subcode = j.Field<string>("tax_subcode")}
into sum1
select new {balance = sum1.Sum(c => c.Field<decimal>("balance_amount"))}
);