Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

3 Answers

up vote 13 down vote accepted

You can just do

var transactionDates = from t in Transactions 
                       select t.FinishTimeStamp;

var dates = new { 
                   FromDate = transactionDates.Min(), 
                   ToDate = transactionDates.Max() 
                };
share|improve this answer

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":

 var q = from tr in dataContext.Transactions
         group tr by 1 into g // Notice here, grouping by a constant value
         select new
         {
           FromDate = g.Min(t => t.InvoiceDate),
           ToDate = g.Max(t => t.InvoiceDate)
         };

Kinda hacky, but the generated SQL is clean, and by doing so, you make only one query to the database.

share|improve this answer
+1 interesting! – womp Jul 10 '09 at 5:53
just to let you know: "group by 1" does not work with NHibernate 3.2 – devio May 16 at 20:30

You can also use the aggregate functions if you want (Example in VB)

 Dim max = Aggregate tMax In Transactions Select tMax Into Max()
share|improve this answer

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.