I'm trying to apply the advice in this post: Tip 22 - How to make Include really Include

It suggests a workaround for ensure eager loading works in the Entity Framework (4.2). That workaround involves casting the IQueryable to an ObjectQuery.

However, when I attempt this, as shown in the post, the query returns a null.

My query is (ctx is a DbContext):

IEnumerable<Coupon> coupons =
    from x in ctx.Coupons
    where x.LanguageCode.Equals("EN", StringComparison.InvariantCultureIgnoreCase) && x.CategoryId == MainCategoryId && x.Date >= fromDate && x.Date <= toDate
    select x;

That works as expected.

However, when I use,

IEnumerable<Coupon> coupons =
    (from x in ctx.Coupons
     where x.LanguageCode.Equals("EN", StringComparison.InvariantCultureIgnoreCase) && x.CategoryId == MainCategoryId && x.Date >= fromDate && x.Date <= toDate
     select x) as ObjectQuery<Coupon>;

it assigns a null to "coupons".

Any idea what I'm doing wrong?

link|improve this question

What if you use var instead of IEnumerable<Coupon>? IQueryable<T> and IEnumerable<T> are not the same thing. – GalacticCowboy Dec 16 '11 at 18:35
1  
Is your ctx a DbContext or an ObjectContext? ObjectQuerys are only used with ObjectContexts. You can also inspect coupons.GetType() in the debugger, to see what type the query really is. – hvd Dec 16 '11 at 18:42
Thanks. I've update the post to say I'm using a DBContext. – dommer Dec 17 '11 at 12:27
1  
In that case, the only answer can be "You cannot convert an IQueryable<T> to an ObjectQuery<T> unless that IQueryable<T> really is an ObjectQuery<T>." I'm wondering why you really need that, though. In your query, you wouldn't need the workaround in the first place, but if you did, does (from x in ctx.Coupons ... select x).Include(...) not do the trick, assuming you're using System.Data.Entity;? – hvd Dec 17 '11 at 12:38
@Hvd. Thanks. I didn't have System.Data.Entity in the using declarations and was relying on Intellisense to determine what was allowed - so didn't think I could use .Include there! And then got into reading an old blog post that "confirmed" that misconception. Doh! Shouldn't code when tired and frustrated, I guess. If you want to post an answer, I'll then accept it - or I'll self-answer in a few days, referencing your comment. – dommer Dec 17 '11 at 17:55
show 1 more comment
feedback

2 Answers

up vote 1 down vote accepted

From the comments to an answer:

Casting to an ObjectQuery<T> only works when the query really is an ObjectQuery<T>, it won't work on any other IQueryable<T>. Since you're using a DbContext instead of an ObjectContext, the queries are of a different type. However, you do not need to cast to the correct type, the DbExtensions.Include extension methods in the System.Data.Entity namespace accept any IQueryable<T> type, and call the appropriate underlying Include method. You can use this, avoid the cast, and thereby avoid explicitly specifying the query's type in your code.

link|improve this answer
feedback

What you are doing is equivalent to this

IEnumerable<Coupon> coupons =
    from x in ctx.Coupons
    where x.LanguageCode.Equals("EN", StringComparison.InvariantCultureIgnoreCase) && x.CategoryId == MainCategoryId && x.Date >= fromDate && x.Date <= toDate
    select x;

ObjectQuery<Coupon> converted = coupons as ObjectQuery<Coupon>;

, with coupons not null and converted null.

Which means the cast is failing.
This does not solve your problem, but at least identifies it.

Perhaps you are using a different version of Entity Framework?

link|improve this answer
Thanks. It could indeed be that this workaround no longer applies, as the post was in 2009. – dommer Dec 17 '11 at 12:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.