Closed
Description
Christoph Strobl opened DATAMONGO-1245 and commented
provide means to allow using a partially filled domain object as pattern for the actual query.
Person sample = new Person();
sample.setLastname("Matthews");
List<Person> result = repository.findAllByExample(new Example<Person>(sample));
- Provide
Example
wrapper where one is able to definenull
value andString
handling. - Offer
findByExample
as respository method
Issue Links:
- DATACMNS-810 Add core types for Query By Example support
("depends on") - DATAJPA-218 Support for Query by Example
Referenced from: pull request #341
1 votes, 2 watchers