1. HQL restriction on child collection stackoverflow.comI have a class which has a collection
Given a list of child names, I'd like to ... |
2. Hibernate criteria with restrictions on children stackoverflow.comI have a Hibernate criteria call that I want to execute in one SQL statement. What I'm trying to do is select instances of Parent that have Children with a ... |
3. Hibernate - multiple collection with restrictions mapping problem coderanch.comHello, I have a problem concerning mapping of multiple collections. Lets's say I want to have a List of ZOO's objects. I have a table called "zoo" with two fields: id - id of ZOO name - name of ZOO Simple export from this table could look like this: id:1 ; name:ZOO1 id:2 ; name:ZOO2 id:3 ; name:ZOO3 Then I have ... |
4. Hibernate - multiple collection with restrictions mapping problem part II coderanch.comHello, Having send one post about multiple collection mapping, I still have a problem with it. My first post concerning this topic can be found here - http://www.coderanch.com/t/216591/ORM/java/Hibernate-multiple-collection-restrictions-mapping But to shortly remind my problem: Lets's say I want to have a List of ZOO's objects. I have a table called "zoo" with two fields: id - id of ZOO name - ... |
5. Restrictions on a Child object ? forum.hibernate.org |
6. Filtering an entity by multiple child restrictions forum.hibernate.orgHi, If I have a company/employee relation, how can I fetch all company which have female employees with name "Miller" AND male employees with name "Smith"? My first (almost successful) attempt was to use a subquery, but I would also get companies with male Millers. HQL: Code: select c from Company as c left join c.employee as ... |
7. NHibernate 1:n mapping to 1:1 with restrictions forum.hibernate.org |
8. Criteria restriction with native sql mapping entity property forum.hibernate.orgThe short question, how do you get the database column name of the id property of a given Hibernate entity. The long question... Here is my setup: Hibernate version: 3.0 Mapping documents: Code: |
9. Using Restrictions.isNotEmpty() etc... with sublcass mapping forum.hibernate.orgI am having trouble using Restrictions.isNotEmpty(collectionPropertyName) when the collection is defined in a super class. Looking at the code, the CollectionPersister is stored using the superclass name, in this case "test.subclass.collections.Person.races" But when the SQL is being generated for the Criterion, the role passed into the SessionFactoryImpl.getCollectionPersister(String role) method, the role it is looking for is "test.subclass.collections.Client.races" presumeably since the Criteria ... |
10. HQL restriction through mapped one-to-many property forum.hibernate.orgNewbie Joined: Tue Aug 15, 2006 3:43 pm Posts: 5 Let me see if I can phrase this correctly, I'm trying to restrict the results of a query based upon two properties in a mapped one-to-many collection.(Mapping files etc. after this bit) This is the initial query that I made: Code: select r from Relationship r where r.indicators.lookup = :lookup and ... |
11. HOW to put restrictions on map keys forum.hibernate.org |
12. how to apply restriction on fetching childs forum.hibernate.orgNewbie Joined: Fri Dec 07, 2007 4:25 pm Posts: 6 Hi all, i am trying to get the parent and the related child entities from the DB. mby requirement is while getting the child i need to restrict the the no of childs for the parent. e.g. 1.lets say parent is a invoice header while child is invoice line iem. 2. ... |