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.

link|improve this question

67% accept rate
I would like the setter to be private for encapsulation. It is the same as using an explicit filed tag and setting that in the class. I want the property to be read-only. – Gluip Sep 29 '09 at 8:50
@Gluip don't think that is the same as an explicit field setting. any reason not to have an explicit field ? – dove Sep 29 '09 at 8:55
1  
No other reason than less code is less trouble. Now switched to an explicit field. – Gluip Sep 29 '09 at 11:52
feedback

2 Answers

up vote 1 down vote accepted

If you are using access property you need to have backing field for this public property. And also use protected modifier instead of private.

link|improve this answer
feedback

Pretty sure that's having to be public.

There could be something done with explicit private fields and possibly another variable, but would want to know why you want the setter to be private ?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.