I may have worded the question poorly but in my global.asx file i use
if (System.Diagnostics.Debugger.IsAttached)
{
var test = new TestDbSeeder(App_Start.NinjectWebCommon.UcxDbContext);
test.seed();
}
This checks to see if the debugger is attached and runs my test seeder so that my acceptance tests always pass.
I need to check to see if the database exists as well and if not run this code first:
var test2 = new DataSeeder();
test2.Seed(App_Start.NinjectWebCommon.UcxDbContext);
This dataseeder is the actual data that has to always be in the database. Is there a command to check if the database exists so that I can run that code block. Thanks!