Here's the scenario, i have a website, which in a single HTTP request (HTTP POST), i need to do the following:

  1. Grab an object (let's say "Tag")
  2. Save some other object (let's say "Question")
  3. Get a fresh copy of "Tag".
  4. Redirect to another page, which needs a fresh copy of "Tag".

Behind the scenes, 2) involves database-side triggers that affects data on "Tag".

So when i do 3), EF is pulling the same copy of the object from step 1), since it's in the graph/internal memory (e.g same connection/context)

I need a "fresh" copy of the object.

In the past, i've used Detach, then i perform an EF query and the latest object in fetched from the DB.

But i don't have access to the object here per-se (i have a DTO, which is returning from my repository), so i don't have anything to pass to the Detach method.

Is there any way to say:

var fresh = db.Tags.Find(1, ignoreGraph: true)

Or is there another alternative?

As mentioned, i'm on Entity Framework 4.1, C# 4 (and ASP.NET MVC 3)

The only solution i can see right now is to pass a querystring parameter to the next page, which then grabs the fresh copy (since it's a new context, new graph, etc).

link|improve this question

possible duplicate of stackoverflow.com/questions/7639219/… – nathan gonzalez Oct 12 '11 at 4:37
@nathan - possibly, but the answer there won't help, since i don't have access to the umbrella object (or the tag object here) for the context.Refresh(RefreshMode.StoreWins,umbrella) call. – RPM1984 Oct 12 '11 at 4:43
and also, that is EF4, not EF4.1. It appears the "Refresh" method has been removed from DbContext. – RPM1984 Oct 12 '11 at 4:46
did you try .reload()? – nathan gonzalez Oct 12 '11 at 5:02
@nathan - yeah, that would work (see my below answer), but it needs access to the object, much like Detach. – RPM1984 Oct 12 '11 at 6:27
feedback

1 Answer

up vote 0 down vote accepted

Found my answer, i think:

Context.Entry<T>(entity).Reload()

Trying now...

link|improve this answer
I don't have access to entity, only dtoEntity. – RPM1984 Oct 12 '11 at 6:30
1  
If you want to refresh entity you must know which entity to refresh, don't you? If you know key of the entity you can still find it in change tracker and after that reload it. – Ladislav Mrnka Oct 12 '11 at 8:15
@Ladislav, i have a unique index, not the entity. E.g i do Find().SingleOrDefault(x => x.UniqueUri == someUri). – RPM1984 Oct 12 '11 at 8:50
Still it is unique identification so you should be able to find the entity in context.ChangeTracker.Entries<EntityType>().Select(e => e.Entity).FristOrDefault(...) - the only think you have to now is unique identification and type of entity. – Ladislav Mrnka Oct 12 '11 at 8:54
@Ladislav - yep, i guess i could do that. Just means i need to leak more EF logic through to my repository interface. No other option i guess. – RPM1984 Oct 12 '11 at 9:34
feedback

Your Answer

 
or
required, but never shown

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