There is no Detach(object entity) on the DbContext.

Do I have the ability to detach objects on EF code first?

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

If you want to detach existing object follow @Slauma's advice. If you want to load objects as detached as not tracked use:

var data = context.MyEntities.AsNoTracking().Where(...).ToList();

As mentioned in comment this will not completely detach entities. They are still attached and lazy loading works but entities are not tracked. This should be used for example if you want to load entity only to read data and you don't plan to modify them.

link|improve this answer
@Ladislav: This is indeed probably what Lol coder meant. I've never used and thought about this method although I often load object lists and dispose the context at once, something like using(ctx){ return ctx....ToList(); }. In such cases using AsNoTracking() would make much sense because I'd save filling up the object context unnecessarily. I guess it would probably have a performance and memory consumption benefit especially for large lists, right? – Slauma Apr 8 '11 at 20:23
@Slauma: Yes it has performance benefit. That is actually why this method exists. Using this approach in ObjectContext API is little bit more complicated. – Ladislav Mrnka Apr 8 '11 at 21:15
Does this disable lazy loading? – Lol coder Apr 16 '11 at 3:27
Actually this will not disable lazy loading it will only disable change tracking and improve performance = entity is still attached. I found it after answering this question so you should mark @Slauma's one as a valid answer. – Ladislav Mrnka Apr 16 '11 at 20:36
This is what I want. I want lazy loading and the ability to only modify a detached entity. – Lol coder Apr 17 '11 at 4:16
show 1 more comment
feedback

This is an option:

dbContext.Entry(entity).State = EntityState.Detached;
link|improve this answer
Can I do this when retrieving objects that returns an IQueryable? – Lol coder Apr 8 '11 at 19:06
@Lol coder: I am not sure if I understand you right, but entity must be a materialized object of a type which is part of your model classes (Person, Customer, Order, etc.). You cannot directly pass in an IQueryable<T> into dbContext.Entry(...). Is that the question you meant? – Slauma Apr 8 '11 at 19:37
feedback

Your Answer

 
or
required, but never shown

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