We have a Visual Studio 2012 ASP.NET MVC project using Entity Framework 5.
There are some unit tests that depend on a database. Setting up the app.config file in the test project to use a central SQL Server database works fine.
However, it would be much nicer to use a LocalDb, so that each developer has his/her own database when running the tests. Especially since we would like to have the tests set up to DropCreateDatabaseAlways when running.
However, I can't get the setup to work. If I try this in app.config
<add name="TestDb"
connectionString="Data Source=(LocalDb)\v11.0;Initial Catalog=unittestdb;
Integrated Security=SSPI;AttachDBFilename=|DataDirectory|\unittestdb.mdf"
providerName="System.Data.SqlClient" />
I get
System.Data.SqlClient.SqlException: A file activation error occurred. The physical file name '\unittestdb.mdf' may be incorrect. Diagnose and correct additional errors, and retry the operation. CREATE DATABASE failed. Some file names listed could not be created. Check related errors.
It sounds like it wants the mdf file to exist already, which seems strange since it is trying to create the database. Creating a mdf file manually does not change the error message.
AppDomain.CurrentDomain.GetData("DataDirectory")? – Ladislav Mrnka Sep 3 '12 at 9:04AppDomain.CurrentDomain.GetData("DataDirectory")in the unit test isnull. – Klas Mellbourn Sep 3 '12 at 9:36SetDataor don't use|DataDirectory|in the connection string because it isnull. – Ladislav Mrnka Sep 3 '12 at 10:06|DataDirecotry|` part does not help, I get the same error. However, replacing it withC:\Temp` does help! Then the unit tests run again. So that is a great improvement. Icing on the cake would be if the db could reside in a relative path. – Klas Mellbourn Sep 3 '12 at 10:35