Fluent NHibernate auto mapping: map property from another table's column
- by queen3
I'm trying to use S#arp architecture... which includes Fluent NHibernate I'm newbie with (and with NHibernate too, frankly speaking). Auto mapping is used.
So I have this:
public class UserAction : Entity
{
public UserAction() { }
[DomainSignature]
[NotNull, NotEmpty]
public virtual string Name { get; set; }
[NotNull,…