Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to use get count(*) like sql server on linq, how can I use extenstion methods to do that ? here is what I am trying to do

var test = empire.Case_Offence.Join( empire.Offences , w => w.OffenceId , 
                       x => x.Id ,
                      ( w , x ) => new { w.Id , w.OffenceId , x.Name  } )
                       .GroupBy( ww => new {ww.Name, ww.Id,ww.OffenceId } ) ;

tnx :)

share|improve this question

1 Answer

Try:

var test = empire.Case_Offence.Join( empire.Offences , w => w.OffenceId , 
                       x => x.Id ,
                       ( w , x ) => new { w.Id , w.OffenceId , x.Name  } )
                       .GroupBy( ww => new {ww.Name, ww.Id,ww.OffenceId } )
                       .Select ( g => new { Key = g.Key, Count = g.Count() } );

test will then be a set of anonymous types with two parameters - Key - the group-by key, and Count - the number of items with that key.

share|improve this answer
Thanks, I was wondering if I can use GroupJoin for this case ? – user988592 Oct 12 '11 at 6:27
Not in this case I don't think (at least, you wouldn't be able to get exactly the same results using GroupJoin alone), although it does depend somewhat on your input data, and your requirements in terms of the output. – Iridium Oct 12 '11 at 19:21

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.