Possible Duplicate:
Get sum of two columns in one LINQ query
I need to know how to write an LINQ Query that will give me the same results as this SQL Query :
select sum(col1) as [col1] , sum(col2) as [col2] , sum(col1)/sum(col2) as [col3], col4 as [col4]
from some_table
group by col4