Hey, is there a way to delete an entity which is r...
# exposed
m
Hey, is there a way to delete an entity which is referenced by other entities and replacing them with null entries? For example, I have an Address and a Person. A person has an Address and if I delete the Person's Address, i would want the Person's Address field to be set to null.
a
If the address referential column e.g address_id is nullable, the you can just set it to null. And then proceed to delete the Address.