Created
July 27, 2017 18:07
-
-
Save dsibinski/b30022b5644925bf8423e2026ad86bb2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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