public DatabaseManager()
 {
     GovBidContext = new GovBidDataContext(connectionString);
     if (!GovBidContext.DatabaseExists())
     {
         GovBidContext.CreateDatabase();
     }
 }
Beispiel #2
0
 public DatabaseManager()
 {
     GovBidContext = new GovBidDataContext(connectionString);
     if (!GovBidContext.DatabaseExists())
         GovBidContext.CreateDatabase();
 }