Pass ISessionImplementor to all value setters and getters of nullable types
Description
NullableType is simplifying the getter and setter arguments by not passing in the session, declared in IType getter and setter arguments.
We now need it to solve some data type issues which are driver dependent. IUserType will have to follow for them to still be able to delegate the get or set to some built-in types. And this will realign it on Hibernate.
We need on driver a property for knowing if it requires to receives time type as TimeSpan, instead of the DateTime NHibernate currently sends by default.
Breaking-changes: NullableType, its descendent (notably all PrimitiveType) and IUserType value getters and setters now take the session as an argument.
NullableType
is simplifying the getter and setter arguments by not passing in the session, declared inIType
getter and setter arguments.We now need it to solve some data type issues which are driver dependent.
IUserType
will have to follow for them to still be able to delegate the get or set to some built-in types. And this will realign it on Hibernate.We need on driver a property for knowing if it requires to receives
time
type asTimeSpan
, instead of theDateTime
NHibernate currently sends by default.