[]
Initializes a new instance of the MssqlSchemaProvider.ForeignKeyData struct.
public ForeignKeyData(string name, string sourceTableSchema, string sourceTableName, string targetTableSchema, string targetTableName, IEnumerable<MssqlSchemaProvider.ForeignKeyData.Relation> relations)
| Type | Name | Description |
|---|---|---|
| string | name | The foreign key constraint name. |
| string | sourceTableSchema | The schema name of the table the constraint belongs to. |
| string | sourceTableName | The name of the table the constraint belongs to. |
| string | targetTableSchema | The schema name of the table the constraint references. |
| string | targetTableName | The name of the table the constraint references. |
| IEnumerable<MssqlSchemaProvider.ForeignKeyData.Relation> | relations | The column-level relations that make up the foreign key. |