@java.lang.SuppressWarnings(value: unused) @io.micronaut.data.jdbc.annotation.JdbcRepository(dialect: Dialect.POSTGRES) interface OrderLineRepository extends BaseRepository, CrudRepository<OrderLine, java.util.UUID>
The OrderLine repository base interface. Provides the methods for the repo.
| Constructor and description |
|---|
OrderLineRepository
() |
| Type Params | Return Type | Name and description |
|---|---|---|
|
java.util.List<OrderLine> |
findAllByOrder(Order order) |
|
java.util.Optional<OrderLine> |
findByUuid(java.util.UUID uuid) |
|
java.util.List<OrderLine> |
list() |