Hi,
Is this possible to do in NHibernate:
public class Person
{
public string Name {get;set;}
public string Surename {get;set;}
public string FullName
{
return this.Name + this.Surename;
}
}
To query the above class by property FullName which is not mapped.
Please help.
Thanks.
--
You received this message because you are subscribed to the Google Groups
"nhusers" 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/nhusers?hl=en.