Does the criteria API of DeltaSpike data support path expressions for Embeddables?
I would like to express the equivalent of
select c from Customer c where c.address.city = ?1
where
@Entity
class Customer {
@Embedded
Address address;
}
@Embeddable
class Address {
String city;
}
Best regards,
Harald
