Hello,
In my class i have the following property:
Class A
{
public virtual string Tag
{
get; private set;
}
}
And in my hbm.xml i have the following (which does not work)
<property name="Tag" access="nosetter.camelcase" />
Nhibernate can't find the backing field. Does anybody known which access strategy to use (if any)??? Thanks in advance.