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