Not at this stage, unfortunately.

On Thu, Nov 26, 2009 at 9:25 AM, David Leite <[email protected]>wrote:

> Thanks for your answers.
> So isn't there any trick to do it?
> My mappings are very simple:
> public class MyPersRootMap : ClassMap<MyPersRoot>
>    {
>        public MyPersRootMap()
>        {
>
>            Id(x => x.Id);
>         Component<MyPersRootReference>(x => x.Reference,          c
> =>
>         {
>         c.Map(x => x.ObjectID).Column("RefeObjectID") ;
>         c.Map(x => x.TypeID).Column("RefeTypeID") ;
>           });
>        Map(x => x.Updates);
>        Map(x => x.CreatedDate);
>        Component<UserReference>(x => x.CreatedUser,          c =>
>         {
>         c.Map(x => x.ObjectID).Column("CreaObjectID") ;
>         c.Map(x => x.TypeID).Column("CreaTypeID") ;
>          });
>       Map(x => x.LastEditedDate);
>       Map(x => x.RField1);
>       Map(x => x.RField4);
>
>     }
>
>  }
>
>
> On 24 nov, 11:17, arnetheduck <[email protected]> wrote:
> > This also affects joining when using composite identifiers (the order
> > of the keys must be the same as in the primary key, otherwise it won't
> > work...)
> > Seehttp://code.google.com/p/fluent-nhibernate/issues/detail?id=328.
> >
> > > > On Tue, Nov 24, 2009 at 8:05 PM, James Gregory <
> [email protected]>wrote:
> > > >> I appreciate the desire to have everything perfect, but I'd suggest
> > > >> focusing your energies on something more constructive.
> >
> > If it always were that easy...=)
> >
> > regards /Jacek
>
> --
>
> You received this message because you are subscribed to the Google Groups
> "Fluent NHibernate" group.
> To post to this group, send email to [email protected].
> To unsubscribe from this group, send email to
> [email protected]<fluent-nhibernate%[email protected]>
> .
> For more options, visit this group at
> http://groups.google.com/group/fluent-nhibernate?hl=en.
>
>
>

--

You received this message because you are subscribed to the Google Groups 
"Fluent NHibernate" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/fluent-nhibernate?hl=en.


Reply via email to