On 09/10/2014 10:33, pasquale wrote:
> mapping as
> ComponentAsId(x => x.Id, pk => {
>   pk.Class<CPrimaryKey>();
>   pk.ManyToOne<COwner>("Owner", m => m.Column("col1"));
>     pk.Property(x => x.Col2, m => m.Column("col2"));
>     pk.Property(x => x.Col3, m => m.Column("col3"));
>             });

I fixed the "issue" replacing
pk.ManyToOne<COwner>("Owner", m => m.Column("col1"));
with
pk.ManyToOne<COwner>(x => x.Owner, m => m.Column("col1"));

Then the params order is related to scope of component? It's intended
behavior?

-- 
You received this message because you are subscribed to the Google Groups 
"nhusers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/nhusers.
For more options, visit https://groups.google.com/d/optout.

Reply via email to