Christoph Strobl
Christoph Strobl
Since: MongoDB 5.0 See: https://www.mongodb.com/docs/manual/reference/operator/aggregation/getField/
Asserting that eg. a _property name_ must not be `empty` can be quite expensive if done frequently esp. within the mapping layer. Also remove assertions done multiple times for the...
Currently the only way to create an `$or` only query is counter intuitive and leads people to creating `$and` combined criterions to a single element `$or` as outlined below. ```java...
Using `@Query` to skip entire criteria entries when given a `null` value is cumbersome at the moment but could be done as follows. ```java interface Repo extends CrudRepository { @Query("""...
Turn defaulting off and enforce an explicit choice from the user.
Currently it is only possible to include the target type within an interface projection when operating upon associations. It should be allowed to use interface projections on references using `@DBRef`....