예제 #1
0
파일: HumanEval.cs 프로젝트: PavelPZ/REW
 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))));
 }
예제 #2
0
파일: HumanEval.cs 프로젝트: PavelPZ/REW
 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();
 }