What is equal of below sql in LINQ
select MIN(finishTimestamp) AS FromDate, MAX(finishTimeStamp) AS ToDate From Transactions
??
from t in Transactions
select new {
FromDate = ?,
ToDate = ?
}
Thanks
|
What is equal of below sql in LINQ
??
Thanks |
|||
|
|
|
You can just do
|
|||
|
|
|
To use multiple aggregates in Linq to SQL, on a table, without grouping, the only way I've found to avoid doing multiple queries, is to make a "fake group":
Kinda hacky, but the generated SQL is clean, and by doing so, you make only one query to the database. |
|||
|
You can also use the aggregate functions if you want (Example in VB)
|
|||
|
|