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, _
parentColumn As String, _
childTable As String, _
childColumn As String _
) As SyncSchemaForeignKey
'使用
Dim instance As SyncSchemaForeignKeys
Dim foreignKeyName As String
Dim parentTable As String
Dim parentColumn As String
Dim childTable As String
Dim childColumn As String
Dim returnValue As SyncSchemaForeignKey
returnValue = instance.Add(foreignKeyName, _
parentTable, parentColumn, childTable, _
childColumn)
public SyncSchemaForeignKey Add(
string foreignKeyName,
string parentTable,
string parentColumn,
string childTable,
string childColumn
)
public:
SyncSchemaForeignKey^ Add(
String^ foreignKeyName,
String^ parentTable,
String^ parentColumn,
String^ childTable,
String^ childColumn
)
member Add :
foreignKeyName:string *
parentTable:string *
parentColumn:string *
childTable:string *
childColumn:string -> SyncSchemaForeignKey
public function Add(
foreignKeyName : String,
parentTable : String,
parentColumn : String,
childTable : String,
childColumn : String
) : SyncSchemaForeignKey
パラメーター
- foreignKeyName
型 : System. . :: . .String
外部キー制約の名前。
- parentTable
型 : System. . :: . .String
親テーブルの名前。
- parentColumn
型 : System. . :: . .String
親テーブル内の主キー列または一意な列の名前。
- childTable
型 : System. . :: . .String
子テーブルの名前。
- childColumn
型 : System. . :: . .String
子テーブル内の外部キー列の名前。
戻り値
型 : Microsoft.Synchronization.Data. . :: . .SyncSchemaForeignKey
コレクションに追加された SyncSchemaForeignKey オブジェクト。
例外
例外 | 条件 |
---|---|
ArgumentException | parentTable、parentColumn、childTable、または childColumn が現在のデータ セットに属していません。 |