Well this works
but there must be a better way!
var ctor = typeof(LegalBodyEntity).GetConstructor(BindingFlags.Instance | BindingFlags.NonPublic, null, CallingConventions.Standard, new Type[0], null);
var allLegalBodies = (LegalBodyEntity) ctor.Invoke(null);
allLegalBodies.DefaultAddressID = null;
adapter.UpdateEntitiesDirectly(allLegalBodies, null);