Create a query for a type of entity bean. You can use the methods on the Query object to specify fetch paths, predicates, order by, limits etc. You then use findList(), findSet(), findMap() and findOne() to execute the query and return the collection or bean. Note that a query executed b
(Class<T> beanType)
| 291 | * }</pre> |
| 292 | */ |
| 293 | <T> Query<T> find(Class<T> beanType); |
| 294 | |
| 295 | /** |
| 296 | * Create a query using native SQL. |
no outgoing calls