Gets the cached value for a row, or queries it if it has not been cached yet @param primaryKeys The primary keys used to access the row @param The type of the value @return The value
(Object... primaryKeys)
| 130 | * @return The value |
| 131 | */ |
| 132 | public <T> T select(Object... primaryKeys) { |
| 133 | return (T) select(o -> sql.querySingleResult(selectQuery, primaryKeys), primaryKeys); |
| 134 | } |
| 135 | |
| 136 | /** |
| 137 | * Gets the cached value for a String row, or queries it if it has not been cached yet |
no test coverage detected