#349 - Polishing.

Update reference documentation about query derivation support.
This commit is contained in:
Mark Paluch
2020-04-21 14:02:33 +02:00
parent 5c921c56a4
commit af192fd488

View File

@@ -136,7 +136,6 @@ interface ReactivePersonRepository extends ReactiveSortingRepository<Person, Str
<4> Find a single entity for the given criteria. It completes with `IncorrectResultSizeDataAccessException` on non-unique results.
<5> Unless <4>, the first entity is always emitted even if the query yields more result documents.
<6> The `findByLastname` method shows a query for all people with the given last name.
The query is provided, as R2DBC repositories do not support query derivation.
<7> A query for a single `Person` entity projecting only `firstname` and `lastname` columns.
The annotated query uses native bind markers, which are Postgres bind markers in this example.
====