hibernate-criteria
How do you add join a table using Criteria class?
I am new to using Criteria, and i am trying to join tables on my query. This is my expected query set up[详细]
2023-03-03 10:02 分类:问答How to make a criteria query with 3 OR Criterions properly?
I\'d like to make a criteria query with 3 OR Criterions and I dont know what is the best way to do it.[详细]
2023-03-02 12:08 分类:问答Search records having comma seperated values that contains any element from the given list
I ha开发者_Python百科ve a domain class Schedule with a property \'days\' holding comma separated values like \'2,5,6,8,9\'.[详细]
2023-02-24 15:23 分类:问答How can I do this using Hibernate
The SQL query is as follows, select s1.* from Sample1 s1,Sample2 s2 where s1.field1=s2.field4 and s2.field2=\'XXYYZZ\'[详细]
2023-02-19 11:25 分类:问答Using Hibernate's Criteria and Projections to Select Multiple Distinct Columns
Using Hibernate\'s Criteria, I want to execute the equivalent of: select distinct uspscity, state from citycomplete where USPSCITY = \'HOUSTON\'[详细]
2023-02-14 16:59 分类:问答Grails: populate a domain with data from cross join: hql, criteria, SQL query?
i\'m a little bit stuck with that question. Let\'s say I have a domain class: class Activity { String activityID[详细]
2023-02-14 09:21 分类:问答Hibernate Criteria and Count Column
I am trying to return an entity开发者_高级运维 with a column that has the count of another table that is a one to many relation. I want to do this using hibernate criteria, not HQL.[详细]
2023-02-12 06:26 分类:问答How to use key of MAP in Criteria Query?
I have a Bean like this Class TestA { Map<String,TestB> testBMap; } Class TestB { String data; ... } I want to fetchthe TestA d开发者_运维技巧ata along with the map testBMap where key =\'te[详细]
2023-02-10 21:23 分类:问答Hibernate criteria query
I am trying to execute a subquery using Hibernate criteria api but not been able to figure out completely how to go about it. Assuming there are 2 tables, SHOPS and EMPLOYEES, where SHOPS has all the[详细]
2023-02-04 09:50 分类:问答Hibernate criteria with projection not performing query for @OneToMany mapping
I have a domain object, Expense, that has a field called initialFields. It\'s annotated as so: @OneToMany(fetch = FetchType.EAGER, cascade = { CascadeType.ALL }, orphanRemoval = true)[详细]
2023-02-03 12:46 分类:问答