Hi,
Is there a way to specify column type conversion in the mapper?
For example, say MyObject has a SpecialType member:
interface MyObject {
id: number,
name: string,
specialType: SpecialType // SpecialType might be a class/interface
}
In the above case, I'd like to be able to tell the mappert to JSON.stringify(specialType) on insert/update and JSON.parse(specialType) in get/findAll
Appreciate opinions