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.

Possible Duplicate:
Get sum of two columns in one LINQ query without grouping

how to select Max and Count in one call using EF?

Select Max([Column]), Count(*) from [Table]
share|improve this question
1  
What have you tried? – IronMan84 Jan 3 at 22:45
I can't think of anything that would do it in one call. Well except ExecuteStoreCommand which I assume could do the job. – user1275154 Jan 3 at 23:19

marked as duplicate by Gert Arnold, Donal Fellows, chris, Gajotres, competent_tech Jan 6 at 0:27

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

I think you can fake it grouping by 0. SQL Server will see through that constant group-by and eliminate it. It has no runtime cost.

The question is: Will EF translate this to SQL properly? Given the track record (in contrast to good old trusty LINQ to SQL!) this is in doubt.

share|improve this answer

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