public LocalEntityStore()
 {
     _localDb          = new LocalDB();
     defaultTableStore = new TableStore(Constants.KIND_DEFAULT);
 }
 /// <summary>
 /// Creates new instance of a Kind store, which allows Get, Put, Delete and Update
 /// </summary>
 /// <param name="tableName">Kind name</param>
 public TableStore(KindName tableName)
 {
     _tableName = tableName;
     _db        = new LocalDB();
 }
 public TableStore(string tableName)
 {
     _tableName = new KindName(tableName);
     _db        = new LocalDB();
 }
 public MultiTableStore()
 {
     _db = new LocalDB();
 }