Skip to content

Instantly share code, notes, and snippets.

@ozgurrgul
Created October 29, 2017 11:36
Show Gist options
  • Save ozgurrgul/a16d7222638e6a210a14ce8f61d1cd15 to your computer and use it in GitHub Desktop.
Save ozgurrgul/a16d7222638e6a210a14ce8f61d1cd15 to your computer and use it in GitHub Desktop.
public void ConfigureServices(IServiceCollection services)
{
services.AddDbContext<ApplicationDbContext>();
services.AddMvc();
}
public void Configure(
IApplicationBuilder app,
IHostingEnvironment env,
ApplicationDbContext dbContext
)
{
app.UseMvc();
dbContext.Database.EnsureCreated();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment