Skip to content

Instantly share code, notes, and snippets.

@Godoy
Created June 12, 2015 18:42
Show Gist options
  • Select an option

  • Save Godoy/c423cce4a3c2f8d8a39e to your computer and use it in GitHub Desktop.

Select an option

Save Godoy/c423cce4a3c2f8d8a39e to your computer and use it in GitHub Desktop.
dispose context controller asp.net c# mvc
private Context context = new Context();
protected override void Dispose(bool disposing)
{
if (disposing) {
context.Dispose();
}
base.Dispose(disposing);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment