Deletes the record from the database for the specified entity. Depending on the cascade attribute specified in the mapping, it deletes the associated objects also.
entityDelete(entity)
returns void
Name | Type | Required | Default | Description |
---|---|---|---|---|
entity | variableName | Yes | Name of the entity being deleted. |
Loads an ORM entity from the database, then deletes it
user = entityLoadByPK("User", userID);
entityDelete(user);