vote up 3 vote down star
1

I'm trying to switch over to Fluent NHibernate for my latest projects. I have users and messages and I'm trying to have many messages associated to one user.

public class Person
{
    ...
    public virtual List<Message> Messages {get; set; }
}

public class Message
{
    ...
    public virtual string RecipientID { get; set; }      
}


public class PersonMap : ClassMap<Person>, IMapGenerator
{
    public PersonMap()
    {
        ...
        HasMany<Message>(x => x.Messages)
            .AsList()
            .WithKeyColumn("RecipientID");
    }
    public XmlDocument Generate() {...}
}

What should my mapping look like for the Message class? Do I need to do anything to signify that it's part of a One-to-Many relationship?

flag

closed as not programming related by Ryan Lanciaux Sep 16 '08 at 1:45

2 Answers

vote up 2 vote down check

Thanks Sara ... that did not help though because I'm using Fluent NHibernate to avoid using the xml mappings.

I did figure it out, however, In my Message Mapping, I needed to

References(x => x.Recipient);

The AutoMapping took care of the rest for me.

link|flag
vote up -3 vote down

ok, so the person class needs this:

<bag name="_Messages" cascade="all">
  <key column="PersonID"/>
  <one-to-many 
     class="AssemblyName.Class, AssemblyName"/>
</bag>

The message class needs:

<many-to-one name="_Person" column="PersonId"
     class="AssemblyName.Class, AssemblyName">
link|flag

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