Just a quick question, I have an existing db I’m reading from that use’s char(1) column. I mapped this as an Enum using the char values but I can’t get ormlite to populate the enum.
Are enum char values supported or do I need a custom converter?
OrmLite by default is just treating it a string (i.e. tries to save Value1), so its most likely going to need to be added in OrmLite with a custom [EnumAsChar] attribute, i.e. similar to how [EnumAsInt] is implemented.