I am working with an oracle legacy database.
All the dates are saved in decimal fields with the following format YYYYMMDD.
Is there a way to transform this kind of type in a datetime (c#), maybe in the mapping file?
I am working with an oracle legacy database. All the dates are saved in
Share
Just write a custom
IEnhancedUserTypethat converts to and from the string representation.That way it will be transparent to your application.