Exemple #1
0
 public static int Set(string collection, StoreDictionary columns, StoreDictionary where)
 {
     return(platform.Set(collection, columns, where));
 }
Exemple #2
0
 public static int Remove(string collection, StoreDictionary where)
 {
     return(platform.Remove(collection, where));
 }
Exemple #3
0
 public static IEnumerable <string> Get(string collection, string column, StoreDictionary where, int limit)
 {
     return(platform.Get(collection, column, where, limit));
 }