I am using Hibernate's Example class to query for objects which do not match the example. Everything works fine so long as I do not have dates in my Hibernate type. However, when I have dates in my Hibernate type, the Example never matches. (Since it is a not, I always receive objects which should not be present in the query.)
This is the code I am executing
Criteria criteria = databaseSession.createCriteria("Person");
criteria.add(Restrictions.not(Example.create(sqlEntity).excludeNone()));
List entities = criteria.list();
// entities contains more objects than it should
If I comment the date property out of my hbm.xml file the query works as expected.
<class entity-name="Person">
...
<!-- This property is causing the Example to not match. -->
<property name="date" type="date">
<column name="Date"/>
</property>
</class>
The sqlEntity object has a date-precision (i.e. the time value is 00:00:00). This is all that is provided into the sqlEntity object. That is also why the date property has a type of date rather than timestamp. The actual rows in the SQL table have millisecond precision and times which are not equal to 00:00:00.
How can I perform this Example query with a date precision on a datetime column with millisecond precision?
By the way, I debugged the date value of the sqlEntity and the objects from entities which should not have been present because of dates. Calling Object.equals() on those two objects returns true.
sqlEntitydoes not have the full date and time. Also, my Hibernate objects which come from the database only need the date portion. Some clients of the database may need the time. – David V Feb 23 '12 at 20:20Object.equals()does return true for the two dates. So, at least when returning, Hibernate does set the time portion to 00:00:00. – David V Feb 23 '12 at 20:24