The ObjectContext instance has been disposed and can no longer be used for operations that require a connection [duplicate]

I am guessing that the problem is that the execution of your LINQ query has been deferred until starting to access them on your view. At this point db has already been disposed.

Try this:

return View(Users.ToList());

Added ToList()

That will force the fetch from the DB before disposing db.

Leave a Comment