I use entity framework 6 code first.
At the moment I have a database for production. I want to add a different database for tests. How do I do that?
Do I need another connection string in my tests project?
What should be the difference between the two connection strings?
I tried copying the connection string and change the Catalog name but it results in mapping to the same database.
Please help me understand each part of the connection string in general
Thanks