public void The_database_exists_as_configured()
 {
     using (var dbContext = new HyperQueryEFContext())
     {
         Assert.IsTrue(dbContext.Database.Exists());
     }
 }
 public void BaseInit()
 {
     using (var dbContext = new HyperQueryEFContext())
     {
         dbContext.Initialize();
     }
 }