//first convert from java.sql.Date to java.util.Date
TypeConvertor convertor = Types.getConvertor(fromClass,toClass);
propertyValue = convertor.convert(propertyValue,null);
fromClass = toClass;
toClass = ReflectionManager.getPropertyType(object,item.getPropertyName());