As I have a number of Enum's that I wanted to be used in database fields, I thought I'd create a generic version of the TypeConverter described at http://llblgen.com/TinyForum/Messages.aspx?ThreadID=7355
I then create a concrete version of the class for each enumeration I want to work with, such as
public class UserCreateStatusTypeConverter : EnumTypeConverter<UserCreateStatus> {
}
LLBLGen doesn't seem to pick up this type (with the intermediate generic EnumTypeConverter class), but it picks up a non-generic converter class that derives directly from the TypeConverter fine. Is there any way to get it to do so?
Cheers