Hi. In ODP.net EF, you can change the default mappings in the configuration before scaffolding. Is this still possible in core?
I ask because NUMBER(2)
to NUMBER(4)
maps to byte, which is unusable with any number over 255. Normally I just map these to short in configuration and the problem goes away, but I'm not sure how to do this in Core as the documentation doesn't mention it except editing the generated classes after the fact.
Thanks.