KyleJ wrote:
How do I save a null in a datetime field?
customer.StartDate = nothing
Dim adapter As New DataAccessAdapter()
adapter.SaveEntity(customer, True)
VB
customer.SetNewFieldValue(CustomerFieldIndex.StartDate, Nothing)
C#
customer.SetNewFieldValue(CustomerFieldIndex.StartDate, Null);