LocalDb for unit testing with Entity Framework 5.0 deployed to AppHarbor

Is it possible to run unit tests in Visual Studio 2012 against localDb created using Entity Framework 5.0 Code-First? Our development is currently against the SQL Express Server instance, but this will not work with AppHarbor deployments, because Db is not available.

+4
source share
1 answer

I am not sure that using LocalDB will solve your problem. To use LocalDB, LocalDB still needs to be installed on the machine your unit tests are running on, and this may not be the case in AppHarbor.

Consider these resources for alternatives:

+4
source

All Articles