An exception is being thrown if the Insert operation is called with anonymous types, like below.
connection.Insert("Table", new { Id = 1, ColumnDateTime = SomeDateValue });
And if you defined a property handler on the type level of the DateTime.
FluentMapper
.Type<DateTime>()
.PropertyHandler<DateTimeKindUtcPropertyHandler>();
Error Image:

An exception is being thrown if the
Insertoperation is called with anonymous types, like below.And if you defined a property handler on the type level of the
DateTime.Error Image: