Represents a foreign key relationship between two tables in a SQL schema.
internal class SqlForeignKeyInheritance System.Object 🡒 SqlForeignKey
This class encapsulates the metadata required to describe a foreign key, including the source and target tables and columns, as well as optional nullability information. It is intended for internal use in scenarios such as schema analysis or diagram generation.
| Properties | |
|---|---|
| Column1 | Column 1 |
| Column2 | Gets or sets the value of the second column in the data structure. |
| N1 | true: zero or one, false: one or more, null: unknown |
| N2 | true: zero or one, false: one or more, null: unknown |
| Table1 | Table 1 |
| Table2 | Table 2 |
| Methods | |
|---|---|
| PrintToPlantUML() | print foreign key for PlantUML |