This question is locked. New answers and comments are not allowed.
I must be missing something basic: I'm trying to persist a System.Drawing.Color object as a field in a persistent class. The OpenAccess compiler tells me this type is not supported and that I must declare it Transient.
Is there a way to use a class that isn't marked Persistent (like the Color class) as a field?
| [Telerik.OpenAccess.Persistent] |
| public class ProductVersion |
| { |
| private string m_strModelNumber; |
| private System.Drawing.Color m_ColorRgb; |
| } |
Is there a way to use a class that isn't marked Persistent (like the Color class) as a field?