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)))); }
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(); }