コード例 #1
0
 public void init() {
   _db = new SqliteDbCore("BiggyTest");
   _db.TryDropTable("propertydocuments");
   _PropertyDocumentStore = _db.CreateDocumentStoreFor<PropertyDocument>();
 }
コード例 #2
0
ファイル: sqliteChinookDb.cs プロジェクト: pottereric/biggy
 public override IDataStore <T> CreateDocumentStoreFor <T>()
 {
     return(_db.CreateDocumentStoreFor <T>());
 }
コード例 #3
0
 public void init()
 {
     _db = new SqliteDbCore("BiggyTest");
     _db.TryDropTable("propertydocuments");
     _PropertyDocumentStore = _db.CreateDocumentStoreFor <PropertyDocument>();
 }