I am having an issue where Date fields are not being saved to the database on insert. I am using Adapter, and have traced the code all way to my .SaveEntity() call, and just before the call I can see the proper values in all fields when inspecting the entity in the Watch window. I have int, decimal and varchar fields that all save properly, but for some reason, no dates are making it to the database.
The only thing I am doing differently from standard usage is calling the ForcedCurrentValueWrite method when populating the entities:
claimServiceItem.Fields[mapping.DestinationColumn].ForcedCurrentValueWrite(destValue);
since this is a data import scenario where the column names are dynamically provided.
Help!