Tagged Questions
1
vote
1answer
42 views
How to query many to many relationship in NHibernate?
I am very new to NHibernate, and I would like to start development using this great technology.
Below is my table relation ship:
Table schemas
http://dl.dropbox.com/u/33698629/Entities.JPG
...
1
vote
3answers
1k views
Embed hibernate hbm.xml mappings in jar
Is it possible to embed the hibernate mapping hbm.xml’s to the jar and avoid manual reference in applicationContext.xml like
<bean id="sessionFactory"
...
1
vote
5answers
293 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
2answers
44 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
2answers
257 views
Hibernate hibernate.hbm2ddl.auto=create/update/validate doesn't work for correctly for custom dialects?
I recently upgrade Hibernate from version 3.3.x to 3.6.4. In version 3.3.x validateSchema (hibernate.hbm2ddl.auto=validate) works correctly.
In version 3.6.x validation is broken (tested for 3.6.4 ...
0
votes
2answers
239 views
NHibernate map a property to a column in another table
I'm brand new to NHibernate - it worked great until I tried to apply it to one of the more common constructs we use in the Oracle 10g database at work.
I want to have a domain object as follows:
...
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
2answers
1k views
Mapping a property to a field from another table in NHibernate
consider the following class:
class Order {
int OrderId {get; set;}
int CustomerId {get; set;}
string CustomerName {get; set;}
//other fields go here
}
which is mapped to Orders ...
0
votes
1answer
78 views
How to map a group entity class from a “group name” column in NHibernate?
I have a table in my database looking roughly like this:
create table Foo (
Id int identity not null,
Name varchar(100) not null,
GroupName ...
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 ...