Hi there,
MySql has a DATETIME column type for storing dates such as "2005-01-01 09:30:00".
In my NHIbernate mapping files, I'm mapping .NET DateTime properties to MySql DATETIME columns like this...
Code:
<property name="TimeLastIndexed" column="time_last_indexed" type="DateTime"/>
However, it's buggered! For some reason, the log file shows that NHibernate is binding date values but NOT with time also. E.g
Code:
2005-06-30 15:03:52,528 [4524] DEBUG NHibernate.Type.NullableType [] <> - binding '10/01/2005' to parameter: 2
I'm using NHibernte release 8.4
I couldn't find this bug on Jira, so I'm guessing that I must be doing something stupid!? Any help much appreciated.
Tobin