public void init() {
   _db = new SqliteDbCore("BiggyTest");
   _db.TryDropTable("propertydocuments");
   _PropertyDocumentStore = _db.CreateDocumentStoreFor<PropertyDocument>();
 }
Пример #2
0
 public override IDataStore <T> CreateDocumentStoreFor <T>()
 {
     return(_db.CreateDocumentStoreFor <T>());
 }
 public void init()
 {
     _db = new SqliteDbCore("BiggyTest");
     _db.TryDropTable("propertydocuments");
     _PropertyDocumentStore = _db.CreateDocumentStoreFor <PropertyDocument>();
 }