Beispiel #1
0
 public IActionResult Count(string collection, string where)
 {
     if (string.IsNullOrEmpty(where))
     {
         where = "1 = 1";
     }
     return(Ok(storageService.Count(collection, where)));
 }