Hi,
DbContext does not provide any Refresh or Merges option and Reload is use with object not DbSet.
After dig deep in EF 4.1 I was found it is very useful. Here is the code. How to solved.
objectContext = ((IObjectContextAdapter)context).ObjectContext;
foreach (var item in this.context.Initials.Local)
{
System.Windows.MessageBox.Show(item.InitialName);
}
objectContext.Refresh(RefreshMode.ClientWins, this.context.Initials);
Alternative this.context.Initials this line hit database too.