Last active
May 24, 2025 19:24
-
-
Save erinnmclaughlin/ce365494ad392dfa98826a3825c6331c to your computer and use it in GitHub Desktop.
Connection String Formats
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
| { | |
| "MsSqlLocalDb": "Data Source=(LocalDb)\\MSSQLLocalDB;Initial Catalog={YOUR_DB_NAME};Integrated Security=True;", | |
| "SqlExpress": "Data Source=localhost,1433;Initial Catalog={YOUR_DB_NAME};User Id={YOUR_USER_ID};Password={YOUR_PASSWORD};TrustServerCertificate=True", | |
| "Postgres": "Host=localhost:5432;Database={YOUR_DB_NAME};Username=postgres;Password=postgres" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment