You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As discussed in the Gitter Channel I would like to know the syntax to be used while working entity classes having @EmbeddedId composite key based objects.
jpaStreamer.stream(MyOwnEntity.class)
.filter(MyOwnEntity$.<do I put property of nested composite key object ?>.equalIgnoreCase("filterIdentifier"))
The text was updated successfully, but these errors were encountered:
There can be scenario that distinct employees might not be identified by their employee id but a composite id needs be used with a combination of employee id and company id. However I might
functionality to find all employees having employee number 12345. Had it been a linear Entity class structure the jpaStreamer code might have looked liked the following.
final List employeeList=
jpaStreamer.stream(EmployeeEntity.class)
.filter(EmployeeEntity$.employeeNumber.equalIgnoreCase())
.toList();
Hello
As discussed in the Gitter Channel I would like to know the syntax to be used while working entity classes having @EmbeddedId composite key based objects.
jpaStreamer.stream(MyOwnEntity.class)
.filter(MyOwnEntity$.<do I put property of nested composite key object ?>.equalIgnoreCase("filterIdentifier"))
The text was updated successfully, but these errors were encountered: