Class DbMetaForeignKey
Represents metadata for a database foreign key constraint.
public class DbMetaForeignKey : DbMetaConstraint
- Inheritance
-
DbMetaForeignKey
- Inherited Members
- Extension Methods
Properties
DeleteRule
Gets or sets the referential trigger action rule for deletes (e.g., CASCADE, RESTRICT).
public string DeleteRule { get; set; }
Property Value
DisplayText
Gets a descriptive, formatted string representation of the foreign key metadata.
public override string DisplayText { get; }
Property Value
ForeignFields
Gets or sets the list of referenced column names in the parent table.
public string ForeignFields { get; set; }
Property Value
ForeignTable
Gets or sets the name of the referenced parent table.
public string ForeignTable { get; set; }
Property Value
UpdateRule
Gets or sets the referential trigger action rule for updates (e.g., CASCADE, SET NULL).
public string UpdateRule { get; set; }