spring-projects / spring-data-relational

Spring Data Relational. Home of Spring Data JDBC and Spring Data R2DBC.
https://spring.io/projects/spring-data-jdbc
Apache License 2.0
740 stars 342 forks source link

support query with `ExampleMatcher` on `AggregateReference` properties #1755

Open ashraf-revo opened 4 months ago

ashraf-revo commented 4 months ago

support ExampleMatcher with AggregateReference ExampleMatcher always ignore any property with AggregateReference because it check if its an isAssociation

image

ashraf-revo commented 4 months ago

i was able to fix with this change if (!property.isTransient() && (!property.isAssociation() || property.getActualType().equals(AggregateReference.class)))