I am using EntityFramework.Extended library to perform batch updates. The only problem is EF does not keep track of the batch updates performed by the library. So when I que
Please try this to refresh a single entity:
Context.Entry(entity).Reload()
Edit: To get fresh data for a collection of entities is worth trying to dispose the DbContext instance after each request.
DbContext