Skip to content

Instantly share code, notes, and snippets.

@ntakouris
Created July 23, 2019 07:58
Show Gist options
  • Select an option

  • Save ntakouris/0d0a061006045d4d45ed191e75fd7f3b to your computer and use it in GitHub Desktop.

Select an option

Save ntakouris/0d0a061006045d4d45ed191e75fd7f3b to your computer and use it in GitHub Desktop.
public void Dispose()
{
using var serviceScope = _serviceProvider.CreateScope();
var context = serviceScope.ServiceProvider.GetService<DataContext>();
context.Database.EnsureDeleted();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment