constants Module
Constants for Dataverse Web API metadata types.
These constants define the OData type identifiers used in Web API payloads for metadata operations.
Data
CASCADE_BEHAVIOR_CASCADE
Perform the action on all referencing table records associated with the referenced table record.
CASCADE_BEHAVIOR_CASCADE = 'Cascade'
CASCADE_BEHAVIOR_NO_CASCADE
Do not apply the action to any referencing table records associated with the referenced table record.
CASCADE_BEHAVIOR_NO_CASCADE = 'NoCascade'
CASCADE_BEHAVIOR_REMOVE_LINK
Remove the value of the referencing column for all referencing table records when the referenced record is deleted.
CASCADE_BEHAVIOR_REMOVE_LINK = 'RemoveLink'
CASCADE_BEHAVIOR_RESTRICT
Prevent the referenced table record from being deleted when referencing table records exist.
CASCADE_BEHAVIOR_RESTRICT = 'Restrict'