Skip to content

Instantly share code, notes, and snippets.

@dsibinski
Created July 27, 2017 18:07
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 dsibinski/b30022b5644925bf8423e2026ad86bb2 to your computer and use it in GitHub Desktop.
Save dsibinski/b30022b5644925bf8423e2026ad86bb2 to your computer and use it in GitHub Desktop.
public void ConfigureServices(IServiceCollection services)
{
services.AddDbContext<CarServiceContext>(o =>
o.UseSqlServer(Configuration.GetConnectionString("DefaultConnection")));
services.AddMvc();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment