Since "[Transient]" does not really work on properties. What do I do now?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

db4o doesn't care about properties. It cares about fields.

I guess you are trying to use "auto-implemented properties", correct?

Until we improve db4o to fully understand auto-implemented properties my best bet is to use normal properties for such cases.

[edited]

class Item
{
    [Transient] 
    private int serviceLength; 

    public int ServiceLength
    {
       get { return serviceLength; } 
       set { serviceLength = value; } 
    }
}

[/edited]

We do have an open issue to add support for automatic properties. If that's important for you, please, vote on it.

Best

Adriano

link|improve this answer
Added your comment as a sample. – Vagaus Dec 15 '10 at 1:22
Please update me when we have a development on the issue, thanks. – Kumkum Adane Dec 17 '10 at 2:50
feedback

Your Answer

 
or
required, but never shown

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