Exemplo n.º 1
0
 public JsonStore()
 {
     this.DecideTableName();
     Database   = new JsonDbCore();
     IsFlushing = false;
     this.TryLoadData();
 }
Exemplo n.º 2
0
 public JsonStore(string dbDirectory, string dbName, string tableName)
 {
     Database       = new JsonDbCore(dbDirectory, dbName);
     this.TableName = tableName;
     IsFlushing     = false;
     this.TryLoadData();
 }
Exemplo n.º 3
0
 public JsonStore(string tableName)
 {
     this.TableName = tableName;
     Database       = new JsonDbCore();
     IsFlushing     = false;
     this.TryLoadData();
 }
Exemplo n.º 4
0
 public JsonStore(string dbName, string tableName)
 {
     Database       = new JsonDbCore(dbName);
     this.TableName = tableName;
     this.TryLoadData();
 }
Exemplo n.º 5
0
 public JsonStore(JsonDbCore dbCore)
 {
     this.DecideTableName();
     Database = dbCore;
     this.TryLoadData();
 }
Exemplo n.º 6
0
 public JsonStore()
 {
     this.DecideTableName();
     Database = new JsonDbCore();
     this.TryLoadData();
 }