Skip to content

Instantly share code, notes, and snippets.

@mptrs
Last active December 10, 2015 13:48
Show Gist options
  • Save mptrs/4442784 to your computer and use it in GitHub Desktop.
Save mptrs/4442784 to your computer and use it in GitHub Desktop.
Dispose asp.net MVC4 C#
protected override void Dispose(bool disposing)
{
_db.Dispose();
base.Dispose(disposing);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment