Last active
October 16, 2024 17:25
-
-
Save HamidMolareza/672bb773c43c97197c2b79ec895fdc47 to your computer and use it in GitHub Desktop.
Database Connection Strings
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
"ConnectionStrings": { | |
"Postgresql": "Host=localhost;Port=5432;Database=mydatabase;Username=myusername;Password=mypassword;", | |
"MySQL": "Server=localhost;Port=3306;Database=mydatabase;User=myusername;Password=mypassword;", | |
"SqlServer": "Server=localhost,1433;Database=DB_NAME;User Id=SA;Password=PASS;TrustServerCertificate=True;", | |
"Sqlite": "Data Source=app.db" | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment