DbSyncForeignKeyConstraint Constructor (String, String, String, String, String)
Initializes a new instance of the DbSyncForeignKeyConstraint class.
Assembly: Microsoft.Synchronization.Data (in Microsoft.Synchronization.Data.dll)
public:
DbSyncForeignKeyConstraint(
String^ name,
String^ parentTable,
String^ childTable,
String^ parentColumn,
String^ childColumn
)
Parameters
- name
- Type: System::String
The name of the foreign key constraint.
- parentTable
- Type: System::String
The name of the parent table that is involved in the foreign key constraint.
- childTable
- Type: System::String
The name of the child table that is involved in the foreign key constraint.
- parentColumn
- Type: System::String
The column from the parent table that is involved in the foreign key constraint.
- childColumn
- Type: System::String
The column from the child table that is involved in the foreign key constraint.
Show: