SyntaxFix
Write A Post
Hire A Developer
Questions
context.Reload() was not working for me in MVC 4, EF 5 so I did this.
context.Entry(entity).State = EntityState.Detached; entity = context.Find(entity.ID);
and its working fine.