With EF4 CTP5 DbContext, what is the equivalent of this
public void Refresh(Document instance) { _ctx.Refresh(RefreshMode.StoreWins, instance
You must use this:
public void Refresh(Document instance) { _ctx.Entry(instance).Reload(); }