Walaa wrote:
One of the things I wanted to do was save a custom class as an Integer field in the database.
So you want to have an instance of this custom class as an EntityField inside an entity.
If so then you are right you will need a TypeConverter.
But unfortunatly TypeConverters aren't supported on the CF, since they inherit from System.ComponentModel.TypeConverter which is not supported on the CF.
So as long as System.ComponentModel.TypeConverter isn't supported on the compact framework, this feature isn't supported too.
Not the answer I was hoping for, but at least it's clear I don't have to try to use LLBLGen.
Thanks.
BTW I checked and the Compact Framework does "support" TypeConverter, but no real methods on it. I sometimes don't understand the decisions they made leaving such functionality out of the CF.