User188291263 posted
I want when user click Delete,mark instance with IsDeleted=true,and update,instead delete.
I tried to execute DynamicUpdate instead DynamicDelete as
partial void DeleteState(State instance)
{
ExecuteDynamicUpdate(instance);
}
But instance only contain StateId and rest of properties are empty.
Any ideas?