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.

I'm trying to do a compiled query but I just want it to return an int

        public Func<DataContext, DateTime, int>
    GetNextTourNo = CompiledQuery.Compile((DataContext db, DateTime day) => ((from b in db.GetTable<BookingType>()
                                                                              where b.RecordType == "H" && b.TourStartDateTime.Value.Date == day.Date
                                                                              orderby b.TourID descending
                                                                              select new { nextID = b.TourID +1 }).Single()));
share|improve this question

2 Answers

up vote 1 down vote accepted

You could just return nextID property from selected single anonymous object

select new { nextID = b.TourID +1 }).Single().nextID
share|improve this answer
top job job! thanks, my own stupidity in the end I 'spose :) – Smithy Nov 12 '12 at 13:03

Can you provide a bit more information on the anonymous type and the context of the compiled query?

Also if you are using the qeury directly in linq to Entity the date comparison will not work. Entity Functions need to be used for this. This could cause the invalid return.

share|improve this answer
There isn't meant to be an anonymous type. I just want the new { nextID = b.TourID +1 }).Single() to be a non anonymous int. – Smithy Nov 12 '12 at 12:56
the error I get at the mo is Error 1 Cannot implicitly convert type 'System.Func<System.Data.Linq.DataContext,System.DateTime,AnonymousType#1>' to 'System.Func<System.Data.Linq.DataContext,System.DateTime,int>' – Smithy Nov 12 '12 at 12:57

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.