Is there a difference in performance depending on where the where clause is located in a linq expression?
Take a look at the code below:
dbContext.AnEntity.Include("AnotherEntity").Where(e => e.ID == id).ToList();
dbContext.AnEntity.Where(e => e.ID == id).Include("AnotherEntity").ToList();
Is the execution plan of these two expression the same or do the differ?
Includeis called on anObjectQuery<T>instance, but theWhere(some lambda expression here)method returnsIQueryable<T>. I don't think you can choose where to place theIncludeactually. – ken2k Aug 6 '12 at 8:59