You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
should be enough for converting to and from database values for a specific type. With session.Insert() it works as expected.
However, when using custom queries with arguments, only DbType mappings are considered.
I'm currently using a little helper to do the conversion for me.
According to the wiki page on Type Converters, registering a converter via
should be enough for converting to and from database values for a specific type. With
session.Insert()it works as expected.However, when using custom queries with arguments, only DbType mappings are considered.
I'm currently using a little helper to do the conversion for me.
This works fine, however this might be a more common problem then just for me, so something like this could be supported by ML itself.