Gets the cached value for a Long row, or queries it if it has not been cached yet @param primaryKeys The primary keys used to access the row @return The Long value
(Object... primaryKeys)
| 150 | * @return The Long value |
| 151 | */ |
| 152 | public Long selectLong(Object... primaryKeys) { |
| 153 | return (Long) select(o -> sql.querySingleResultLong(selectQuery, primaryKeys), primaryKeys); |
| 154 | } |
| 155 | |
| 156 | /** |
| 157 | * Checks whether a value has been cached by its primary keys |
nothing calls this directly
no test coverage detected