Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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      varchar(100)       not null,
    constraint PK_Foo primary key (Id)
)

Now I want to map this table into two entity classes like this:

class Foo {
    public virtual in Id { get; private set; }
    public virtual string Name { get; set; }
    public virtual Group Group { get; set; }
}

class FooGroup {
    public virtual string Name { get; set; }
    public virtual ISet<Foo> Foos { get; private set; }
}

Is this possible with NHibernate? I have tried to search the net and NH docs, but I really don't know what to look for - ideas for search queries would be appreciated.

Maybe I can make a mapping for FooGroup that uses a custom HQL/SQL query to select the distinct group names, and another custom query to select the appropriate set of contained items?

share|improve this question
Can you tell us more about what are you trying to achieve, why do you need two classes? – epitka Sep 2 '09 at 15:10
When the data model was originally designed, the group name was nothing but a name. Later, as things has evolved, it appears that the actual groups now have business rules to comply with. Example: the FooGroup should have a method Bar() which applies some magic business aggregate function to the contained Foos and returns an integer. Trying to do this the DDD way, I figured that I could refactor the string `GroupName to a FooGroup class and declare the method here. Does this make sense? – Jørn Schou-Rode Sep 3 '09 at 16:37
sounds similar to my question <stackoverflow.com/q/6135909/671619>; – Firo Aug 30 '11 at 14:27

1 Answer

up vote 0 down vote accepted

I don't think it's possible to do what you want purely in the NHibernate mapping ... although I could be proved wrong by someone else :-)

OTOH it's pretty easy to define a straightforward mapping from your table into:

class RawFooData 
{
    public virtual in Id { get; private set; }
    public virtual string Name { get; set; }
    public virtual string GroupName { get; set; }
}

and then process this to get out the values you want:

IEnumerable<FooGroup> groups = allRawFooData.Select(data => data.GroupName)
                                        .Distinct()
                                        .Select(name => new FooGroup() 
                                                        {
                                                           Name = name
                                                        });

foreach(var group in groups)
{
    group.Foos = allRawFooData.Where(data => data.GroupName == group.Name);
}

I think you will only find performance issues here if you are dealing with very large quantities of data (e.g. 10K rows or more).

share|improve this answer
This is exactly what I have now. Please, see my reply to epitka's comment regarding why I wish to introduce the grouping class. – Jørn Schou-Rode Sep 4 '09 at 21:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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