EdgeConstraintClause コンストラクター

定義

オーバーロード

名前 説明
EdgeConstraintClause()
EdgeConstraintClause(SqlSmoObject, String)
EdgeConstraintClause(EdgeConstraint, Table, Table)

EdgeConstraintClause オブジェクトをインスタンス化するコンストラクター。 これはコンシューマーに役立ちます。

EdgeConstraintClause()

public EdgeConstraintClause();
Public Sub New ()

適用対象

EdgeConstraintClause(SqlSmoObject, String)

public EdgeConstraintClause(Microsoft.SqlServer.Management.Smo.SqlSmoObject parent, string name);
new Microsoft.SqlServer.Management.Smo.EdgeConstraintClause : Microsoft.SqlServer.Management.Smo.SqlSmoObject * string -> Microsoft.SqlServer.Management.Smo.EdgeConstraintClause
Public Sub New (parent As SqlSmoObject, name As String)

パラメーター

parent
SqlSmoObject
name
String

適用対象

EdgeConstraintClause(EdgeConstraint, Table, Table)

EdgeConstraintClause オブジェクトをインスタンス化するコンストラクター。 これはコンシューマーに役立ちます。

public EdgeConstraintClause(Microsoft.SqlServer.Management.Smo.EdgeConstraint parent, Microsoft.SqlServer.Management.Smo.Table fromTable, Microsoft.SqlServer.Management.Smo.Table toTable);
new Microsoft.SqlServer.Management.Smo.EdgeConstraintClause : Microsoft.SqlServer.Management.Smo.EdgeConstraint * Microsoft.SqlServer.Management.Smo.Table * Microsoft.SqlServer.Management.Smo.Table -> Microsoft.SqlServer.Management.Smo.EdgeConstraintClause
Public Sub New (parent As EdgeConstraint, fromTable As Table, toTable As Table)

パラメーター

parent
EdgeConstraint

このオブジェクトをカプセル化する親オブジェクト (この場合は EdgeConstraint)

fromTable
Table

接続の原点を形成するテーブル

toTable
Table

接続のシンクを形成するテーブル

適用対象