Skip to content

Commit

Permalink
appsettings.json: use different DBs for EF in Rider and Visual Studio
Browse files Browse the repository at this point in the history
  • Loading branch information
gorohoroh committed Jul 6, 2018
1 parent 16eb1ab commit fd5b304
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion OdeToFoodRider/OdeToFoodRider/appsettings.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"Greeting": "Hello from Rider",
"ConnectionStrings": {
"OdeToFood": "Server=(localdb)\\MSSQLLocalDB;Database=OdeToFood;Trusted_Connection=True;MultipleActiveResultSets=true"
"OdeToFood": "Server=(localdb)\\MSSQLLocalDB;Database=OdeToFoodRider;Trusted_Connection=True;MultipleActiveResultSets=true"
}

}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"Greeting": "Hello from Visual Studio",
"ConnectionStrings": {
"OdeToFood": "Server=(localdb)\\MSSQLLocalDB;Database=OdeToFood;Trusted_Connection=True;MultipleActiveResultSets=true"
"OdeToFood": "Server=(localdb)\\MSSQLLocalDB;Database=OdeToFoodVisualStudio;Trusted_Connection=True;MultipleActiveResultSets=true"
}
}

0 comments on commit fd5b304

Please sign in to comment.