I am in the process of upgrading an application from EF1 to EF4.1 I created a DbContext and a set of POCOs using the "ADO.NET DbContext Generator" templates.

When I query the generated DbContext the database part of the query takes 4ms to execute (validated with EF Profiler). And then it takes the context about 40 seconds (in words: FORTY!) to do whatever it does before it returns the result to the application.

EF1 handles the same query in less than 2 seconds.

Turning off AutoDetectChanges, LazyLoading and ProxyGeneration wins me 2-3 seconds.

When I use the AsNoTracking() extension method I am able to reduce the total execution time to about 3 seconds.

That indicates that ChangeTracking is the culprit.

But ChangeTracking is what I need. I must be able to eventually persist all changes without having to handpick which entities were modified.

Any ideas how I could solve that performance issue?

link|improve this question
1  
It was discussed here several times. It looks like a bug in EFv4.1 – Ladislav Mrnka May 12 '11 at 7:46
It's even worse when I use EF4.0 and the "ADO.NET POCO Entity Generator" template. Then it takes over 80 seconds until I have some result. So the bug was even more severe with a previous version and MS not able to fix it properly in EF4.1? – Sebastian Weber May 12 '11 at 8:05
3  
You can try to turn off AutoDetectChanges / use AsNoTracking but in the same time create tracking proxies (all properties must be virtual). I wonder if this track changes or not and I cannot test it myself now. – Ladislav Mrnka May 12 '11 at 8:12
1  
I see that you have also asked this question on MSDN forum. Add details that it performs also bad when using EFv4 with POCOs. – Ladislav Mrnka May 12 '11 at 8:59
1  
@Programmers having a problem with their navigation properties made virtual trying having ProxyGeneration = true: Don't instantiate and assign any collection. The proxy generation will take care of that. However, to get your proxy-object you need to create it with DbSet.Create. Simply instantiating with "new" will not suffice. – Alex Maker Sep 1 '11 at 17:13
show 8 more comments
feedback

2 Answers

Is the technique at the end of this documentation useful? Alternatively, I've avoided many of the performance pitfalls using a fluent interface to declaratively state which entities in a given transaction for sure won't change vs. might change (immutable vs. immutable). For example, if the entities I am saving are aggregate roots in which the root or its entities refer to "refdata" items, then this heuristic prevents many writes because the immutable items don't need to be tracked. The mutable items all get written without check (a weakness... One which may or may not be acceptable).

I'm using this with a generic repository pattern precisely because I don't want to track changes or implement a specific strategy for each case. If that's not enough, perhaps rolling your own change tracking outside of the context and adding entities in as needed will work.

link|improve this answer
feedback

Without seeing the query, I can't say for sure what the problem might be. Could this be related?

Why does the Contains() operator degrade Entity Framework's performance so dramatically?

Depending on the LINQ operators being used, it appears that EF has a tough time converting some queries to SQL. Maybe you're running up against a similar situation here.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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