Table of Contents

Class DbMetaForeignKey

Namespace
Tripous.Data
Assembly
Tripous.Data.dll

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

string

DisplayText

Gets a descriptive, formatted string representation of the foreign key metadata.

public override string DisplayText { get; }

Property Value

string

ForeignFields

Gets or sets the list of referenced column names in the parent table.

public string ForeignFields { get; set; }

Property Value

string

ForeignTable

Gets or sets the name of the referenced parent table.

public string ForeignTable { get; set; }

Property Value

string

UpdateRule

Gets or sets the referential trigger action rule for updates (e.g., CASCADE, SET NULL).

public string UpdateRule { get; set; }

Property Value

string