Skip to content

Instantly share code, notes, and snippets.

@dkreider
Created May 22, 2021 14:59
Show Gist options
  • Save dkreider/2114b53d6ea3d93ec688e2796aaaf5fc to your computer and use it in GitHub Desktop.
Save dkreider/2114b53d6ea3d93ec688e2796aaaf5fc to your computer and use it in GitHub Desktop.
public void ConfigureServices(IServiceCollection services)
{
services.AddDbContext<BaseControllerDBContext>(options => options.UseInMemoryDatabase("BaseController"));
services.AddControllers();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment