Handle Time parameter conversion for newer Npgsql
Description
Environment
dependant
depends on
is related to
Activity
Frédéric Delaporte May 26, 2017 at 3:52 PM
I have added the condition on loaded Npgsql version anyway, just to really be on the safe side.
Alex Zaytsev May 25, 2017 at 7:51 PM
I did not check the GitHub, just checking emails eventually
Frédéric Delaporte May 25, 2017 at 7:31 PMEdited
Why not. Already done in a PR on current driver while still using Npgsql 2, it looks like it supports it. That is why I have flagged this as "possible breaking change" rather than "breaking change". I have not checked current tests are strong enough for their success to be a very good indicator of support.
And instead of introcuding a new driver, if it was needed to not do the conversion for older version, I was envisioning getting the Npgsql assembly version and do the conversion only if >= 3. This way, no need to adjust the driver in configuration according to the used Npgsql version.
Alex Zaytsev May 25, 2017 at 7:06 PMEdited
Are you going to do this conversion on a driver level? I think if it is, then it worth to make a separate Npgsql3Driver. This way it should not be a breaking change.
Frédéric Delaporte May 25, 2017 at 7:03 PM
TimeAsTimeSpan
and the like are for choosing the resulting .Net type on the entity, regardless of the default .Net type mapping of the provider.
Here, that does change the .Net type internally used by NHibernate for sending parameters values to the provider.
Both Time
and TimeAsTimeSpan
tests were failing with Npgsql 3, because both types supply parameters values for entity updates and inserts as DateTime
. The change convert those parameters values to TimeSpan
, as it is already done by Sql2008ClientDriver
.
Npgsql has change it
DbType.Time
handling in it v3 series. (See #347.) It was mapping it toDateTime
prior to v3, it now maps it toTimeSpan
.It was supposed to handle conversion from
DateTime
toTimeSpan
and is even documented as such, but in NHibernate use cases, it fails (sending aDbCommand
with aDbType.Time
parameter having aDateTime
value).It appears NHibernate already does a
DateTime
toTimeSpan
conversion for SQL Server 2008 and above. So we just have to take that. Excepted we should probably do that conversion only if the loaded Npgsql is v3 or above...