vote up 1 vote down star

I'm not an advanced NHibernate user, so this may be somewhat important, and I just didn't discover it yet.. but what the heck.

Consider the class:

public class House
{
    public int Id { get; set; }

public ISet<Room> Rooms
{
    get;
    set;
}

}

When specifying NHibernate Set element it's not enough to write:

<set name="Rooms" />

Instead I have to write at least:

<set name="Rooms">
  <key column="RoomId"/>
  <one-to-many class="Room"/>
</set>

This seems to be a violation of DRY principle. If it's a Set the default should be that it's a one-to-many relationship. The class should be inferred from generic type of the collection and as the key column, primary key of collection element's class should be used.

This seems to me like a reasonable defaults. Why then, NHiberbate is not smart about it, and requires me to type these extra 3 lines?

flag

77% accept rate

2 Answers

vote up 0 vote down

What if you do not use a generic collection ? If I'm not mistaken NHibernate only supports generics as from version 1.2; so in previous versions type inference was definetly not possible.

What if you use a legacy DB, in which the primary ID is not used as the foreign key in the related table ?

link|flag
Then I would not go with the defaults. However having these values as defaults would make sense IMHO. Even if in .NET 1.1 time that made sense, it does not anymore. So is it a leftover? – Krzysztof Koźmic Mar 12 at 13:55
vote up 0 vote down

You might have a look at Fluent NHibnernate. Their DSL is inspired by DRY.

Edit: Sorry should have read more carefully...

Regarding your example, Fluent NHibernate would allow you to express the mapping as:

HasMany(x => x.Rooms);

However, the HasMany (or One-To-Many) relationship is mapped to IList. I am not sure if this can be customized further (let Fluent map to ISet as default). But either way it is less repetitive than the standard mapping declaration.

Here are some examples for declaring mappings: Fluent NHibernate Wiki.

link|flag
I'm aware of FluentNHibernate. That's however not an option for me, and it still does not answer the question. – Krzysztof Koźmic Mar 12 at 14:51

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.