コード例 #1
0
ファイル: Store.cs プロジェクト: andreidigori/mobilekit
 public static int Set(string collection, StoreDictionary columns, StoreDictionary where)
 {
     return(platform.Set(collection, columns, where));
 }
コード例 #2
0
ファイル: Store.cs プロジェクト: andreidigori/mobilekit
 public static int Remove(string collection, StoreDictionary where)
 {
     return(platform.Remove(collection, where));
 }
コード例 #3
0
ファイル: Store.cs プロジェクト: andreidigori/mobilekit
 public static IEnumerable <string> Get(string collection, string column, StoreDictionary where, int limit)
 {
     return(platform.Get(collection, column, where, limit));
 }