Hi,
Roo doesn't seem to provide dynamic finders on embeddable objects. Will explain with a hypothetical example
And now AddressQuote:
@RooEntity
class Person {
@Embedded
Address address;
}
If I am to find Person's whose address's city streetName field is null, Roo's "finder list" on Person is not giving me an appropriate finder.Quote:
@Embeddable
class Address {
String streetName;
String city;
}
Regards
Sathya
