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;
 }