LLBLGen 5.6.1; Database First, Adapter
Some of the fields in my tables use a type converter for a custom value type (struct). If I instantiate one of these entities and access the property that is assigned the custom value type it throws a null reference exception. It is quite obvious why this is happening; the TypeDefaultValue.GetDefaultValue method in the generated code (HelperClasses) does not include the custom value type in its switch statement. What is the correct way of dealing with this situation? Currently I just added the custom value type to the switch statement. However, this will need to be done every time the code is regenerated. Is there a cleaner way of doing this?
I apologize if I missed something that is documented.