I'm starting out with db4o in .NET 4.0. Should I be using fields or properties for persistent objects?

I understand that to use the [Indexed] attribute for unique IDs, I need to use a field. How do I implement the corresponding ID property without duplicating data in my database?

link|improve this question

72% accept rate
feedback

1 Answer

up vote 3 down vote accepted

Use regular properties, like you would do with any other object. Keep your fields private and access them via properties and methods. That makes it more flexible, for example to rename a property.

db4o always stores field values and ignores properties. Thats why you have to add the index-attribute on a field. Also configuration-stuff always refers to the field. When you add a property db4o will just store the underlying field.

The only thing you might want to consider if you want to use auto-properties. C# auto-properties are backed by a compiler-generated field. This field-name will be very ugly. Therefore you probably want to use regular properties with a regular field.

Note: For Silverlight you need to use public fields, because db4o cannot access private fields via reflection.

link|improve this answer
+1 private field access via reflection. I wrongly assumed that db4o could not access private fields. I mostly use auto-properties for the convenience, but I have noted the ugly compiler-generated fields. – FreshCode Mar 12 '11 at 7:13
feedback

Your Answer

 
or
required, but never shown

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