Skip to content

Instantly share code, notes, and snippets.

@A2H111
Created October 22, 2017 04:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save A2H111/04b182a10dd76c5e1b4b0fd2c1dbfdcd to your computer and use it in GitHub Desktop.
Save A2H111/04b182a10dd76c5e1b4b0fd2c1dbfdcd to your computer and use it in GitHub Desktop.
public void ConfigureServices(IServiceCollection services)
{
services.AddDbContext<EmployeeDbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("EmployeeDbContext")));
services.AddMvc();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment