Example #1
0
 public static IEnumerable<HumanEval> readAllForLines(azure.driverLow db, string compId) {
   return db.executeQuery(db.keyRangeQuery<HumanEval>(partitionKey(compId), azure.keyLib.createKeyLow(keys(LineIds.no, null).Take(1))));
 }
Example #2
0
 public static HumanEval[] readAllForLine(azure.driverLow db, string compId, LineIds line) {
   return db.executeQuery(db.keyRangeQuery<HumanEval>(partitionKey(compId), azure.keyLib.createKeyLow(keys(line, null).Take(2)))).ToArray();
 }