distinct
を使用してクエリに組み込んでみた人はいますかSpring Data for Mongo
。例があれば、投稿してください。をどこにどのように含める必要がありdistinct flag
ますか?
Spring Data Mongo の例へのリンク--Example 4.4. Query creation from method names
// Enables the distinct flag for the query
List<Person> findDistinctPeopleByLastnameOrFirstname(String lastname, String firstname);
List<Person> findPeopleDistinctByLastnameOrFirstname(String lastname, String firstname);