The syntax does not work in bdehind && code, any ideas?
Entities ctx3 = new Entities();
var uniqueQuote = from quot in ctx3.Quotes.Include("aspnet_Users").Include("Enquiries")
where quot.Enquiries.EnquiryId == selectedEnquiryId &&
quot.aspnet_Users.UserId == currentUserId
orderby quot.QuotePrice
select quot;
Error 2 The delegate "System.Func" does not accept the arguments "1" C: \ LocalGarageFinder \ LocalGarageFinder \ InquiryDetail.aspx.cs 56 33 LocalGarageFinder
source
share