Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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"))}
    );
share|improve this question
I don't understand what you mean by table[c.glaccount,j.type in select new], but can't you join this table as well? – Gert Arnold Nov 29 '11 at 16:12
here table means _currentPeriodTaxBalanceTable (c) related columns. – user1071479 Nov 29 '11 at 16:18

1 Answer

What you want here can much better be achieved by method (or fluent) syntax, like this:

_currentPeriodTaxBalanceTable.AsEnumerable()
.GroupJoin(dtAcsTaxCode.AsEnumerable()
, c => c.Field<int>(TaxCodeNGLAccountEntity.GLAccountKey)
, j => j.Field<int>(TaxCodeNGLAccountEntity.GLAccountKey)
, (c, j) =>  new { c, j })
.Select(anon => new {balance = anon.Sum(c => c.Field<decimal>("balance_amount"))}

(I'm not sure if this compiles, hope it points you in the right direction).

The GroupJoin into the anonymous type ({c,j}) is the crucial part here. There is no comprehension syntax equivalent for it1. It gives you a grouping of anonymous types consisting of c and their list of j entities.

1 join directly followed by into would produce a list of js for each c, but without c.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.