Correct, I do not need the binding events after a save since the edit dialog is closed. Here is part of the stack trace:
Exception Info: The entity is out of sync with its data in the database. Refetch this entity before using this in-memory instance.
Exception Stack Trace: at SD.LLBLGen.Pro.ORMSupportClasses.EntityBase2.GetCurrentFieldValue(Int32 fieldIndex)
at Touchstone.CRM.DL.EntityClasses.IncidentEntity.get_AssignedOnDate()
at Touchstone.CSD.CRM.Incident.Views.IncidentEditViewPresenter.SaveIncident(Boolean close)
I'm assuming the grid is trying to pull the assigned on date value out of the entity. So is it safe to say whenever you have two-way databinding in-place and you need to save an entity, you need to refetch after the save? There is really no events I can unsubscribe to since it happens within the grid control itself.