Inheritance: IStoreConventions
Beispiel #1
0
 public DocumentStore(string connectionString)
 {
     ConnectionString = connectionString;
     Conventions = new StoreConventions();
     StoreInfo = new StoreInfo();
     TableNames = new List<string>();
 }
Beispiel #2
0
 public DocumentStore(string connectionString, IStoreInfo storeInfo)
 {
     ConnectionString = connectionString;
     Conventions = new StoreConventions();
     StoreInfo = storeInfo;
 }