Add 方法 (String, String, String[], String, String )
将 SyncSchemaForeignKey 对象添加到集合的末尾,并添加指定的约束名、父表和列、子表和列。
命名空间: Microsoft.Synchronization.Data
程序集: Microsoft.Synchronization.Data(在 Microsoft.Synchronization.Data.dll 中)
语法
声明
Public Function Add ( _
foreignKeyName As String, _
parentTable As String, _
parentColumns As String(), _
childTable As String, _
childColumns As String() _
) As SyncSchemaForeignKey
用法
Dim instance As SyncSchemaForeignKeys
Dim foreignKeyName As String
Dim parentTable As String
Dim parentColumns As String()
Dim childTable As String
Dim childColumns As String()
Dim returnValue As SyncSchemaForeignKey
returnValue = instance.Add(foreignKeyName, _
parentTable, parentColumns, childTable, _
childColumns)
public SyncSchemaForeignKey Add(
string foreignKeyName,
string parentTable,
string[] parentColumns,
string childTable,
string[] childColumns
)
public:
SyncSchemaForeignKey^ Add(
String^ foreignKeyName,
String^ parentTable,
array<String^>^ parentColumns,
String^ childTable,
array<String^>^ childColumns
)
member Add :
foreignKeyName:string *
parentTable:string *
parentColumns:string[] *
childTable:string *
childColumns:string[] -> SyncSchemaForeignKey
public function Add(
foreignKeyName : String,
parentTable : String,
parentColumns : String[],
childTable : String,
childColumns : String[]
) : SyncSchemaForeignKey
参数
- foreignKeyName
类型:System. . :: . .String
外键约束的名称。
- parentTable
类型:System. . :: . .String
父表的名称。
- parentColumns
类型:array<System. . :: . .String> [] () [] []
父表中的主键或唯一列的数组。
- childTable
类型:System. . :: . .String
子表的名称。
- childColumns
类型:array<System. . :: . .String> [] () [] []
子表中的外键列的数组。
返回值
类型:Microsoft.Synchronization.Data. . :: . .SyncSchemaForeignKey
已添加到集合中的 SyncSchemaForeignKey 对象。
异常
异常 | 条件 |
---|---|
ArgumentException |
— 或者 —
|