Created
February 23, 2017 10:47
-
-
Save stefan-wegener/8c2eb9d5d98fe9e8b3b7f32bf27f6637 to your computer and use it in GitHub Desktop.
ASP.NET Core Notes
This file contains hidden or 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
| Multiple environments with different DB connections: | |
| Besides appsettings.json, create appsettings.development.json, appsettings.staging.json, appsettings.production.json and move your connections strings there. | |
| In code: | |
| cs: if (env.IsDevelopment()) { ... } | |
| cshtml: <environment names="Development"> ... </environment> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment