up vote 1 down vote favorite
1
share [g+] share [fb]

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

66% 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

3 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

I had this issue. I wrote a blog post explaining my answer, but I say use protected for the setter.

link|improve this answer
1  
Good read Tim. However, you conclude the post with "Why not set protected? It’s not unreasonable to expect a maintaining developer to understand that NHibernate sub-classes your class." While I agree that's a reasonable demand, a developer may still not want other subclasses to be able to set the value. – Jeff Sternal Jun 9 '10 at 13:11
feedback

Your Answer

 
or
required, but never shown

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