Inheritance: IStoreConventions
コード例 #1
0
ファイル: Store.cs プロジェクト: abaxas/elephanet
 public DocumentStore(string connectionString)
 {
     ConnectionString = connectionString;
     Conventions = new StoreConventions();
     StoreInfo = new StoreInfo();
     TableNames = new List<string>();
 }
コード例 #2
0
ファイル: Store.cs プロジェクト: abaxas/elephanet
 public DocumentStore(string connectionString, IStoreInfo storeInfo)
 {
     ConnectionString = connectionString;
     Conventions = new StoreConventions();
     StoreInfo = storeInfo;
 }