Linq to Sql statement for multiple aggregate values in single expression
- by Jeff Langston
How would I write a linq to sql statement for the following tsql?
select
count(*),
sum(Amount),
avg(Amount),
min(Amount),
max(Amount)
from
TableName