This question is locked. New answers and comments are not allowed.
OA throws this exception (I think this is some reflection and constructor-related problem) when I build that code:
| public class Persisted |
| { |
| protected Guid id; |
| protected int version; |
| } |
| [Serializable] |
| [Persistent(IdentityField = "_id", VersionField = "_version")] |
| public class A : Persisted |
| { |
| private string name; |
| .... |
| } |
I want to create a base class for my DAL classes (to call a method to fill the lazy fields before serializing).
How can I do that?
Thanx!