Tagged Questions

1
vote
1answer
1k views

Retrieve data from multiple tables using Hibernate

How can i fetch data from multiple tables in a database (mysql) using hibernate... Can any one help me out in this regard... a sample example will be of great help, if possible. Thanks. Uday.
1
vote
5answers
292 views

Is there a way to define reusable properties to n-hibernate mappings?

I have a scenario that i want to add some standard properties to my entities. Meaning that i will have e.g. 1 int and 2 string properties applied to all relevant entities. I have over 100 mapping ...
0
votes
1answer
31 views

How to do Hibernate XML-Mapping, for one-to-many using 1 PK to map to another Entity with Composite Keys

I'm having a big problem trying to do map an entity to another that has a Composite-PK... What i'm trying to achieve here is, 1 User can have many Task, and Each Task contains many Modules and It's ...
0
votes
2answers
42 views

Nhibernate: How create a <bag> on two classes for same class child?

I have a class/table named "Comment" <class name="Comment"> <id name="Id"> <generator class="guid"/> </id> <property name="ReferenceId" index="Comment_ReferenceId_Index" ...
0
votes
1answer
76 views

select in NHibernate

I have Person. All Person have many addresses (one-to-many). I need to do select from Person data, that contains List of Addresses. I use ICriteria ,because I use the projection. How can I do it??? ...
0
votes
4answers
159 views

Is there a way to map a one-to-one with a where clause?

Please excuse my ignorance on the topic, as I am relatively new to Hibernate / NHibernate, but I have encountered a mapping I can't figure out: This is what my database table looks like: ...
-1
votes
2answers
47 views

Nhibernate how to get rid of proxies and have the concrete when reference is loaded

I have Item with 1:m relation to TreeNode. TreeNode has refernce to parent node ... and has reference to another Objects. TreeNode and his relation are stored in second level cache. My problem: If i ...