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
Not all entities require repository (`@Criteria.Repository`) but you need to add`@Criteria` to all classes you want to query by. For example, to filter on`Person.pets.name``Pet` class needs to have`@Criteria` (otherwise`PersonCriteria.pets` will have a very generic Object matcher).
63
63
64
64
####Use generated repository to query or update a datasource
65
-
`@Criteria.Repository` instructs immutables to generate repository class with`find` /`insert` /`watch` operations. You are required to provide a valid[backend](https://github.com/immutables/immutables/blob/master/criteria/common/src/org/immutables/criteria/adapter/Backend.java)
65
+
`@Criteria.Repository` instructs immutables to generate repository class with`find` /`insert` /`watch` operations. You are required to provide a valid[backend](https://github.com/immutables/immutables/blob/master/criteria/common/src/org/immutables/criteria/backend/Backend.java)