ForeignKeyConstraint.Equals(Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a value indicating whether the current ForeignKeyConstraint is identical to the specified object.
public:
override bool Equals(System::Object ^ key);
public override bool Equals (object? key);
public override bool Equals (object key);
override this.Equals : obj -> bool
Public Overrides Function Equals (key As Object) As Boolean
Parameters
- key
- Object
The object to which this ForeignKeyConstraint is compared. Two ForeignKeyConstraint are equal if they constrain the same columns.
Returns
true
, if the objects are identical; otherwise, false
.
Examples
The following example creates a new ForeignKeyConstraint and checks it against other collection members with the Equals method before adding it to a ConstraintCollection.
private void CreateConstraint(DataSet dataSet)
{
// Create the ForignKeyConstraint with two DataColumn objects.
DataColumn parentCol = dataSet.Tables["Customers"].Columns["id"];
DataColumn childCol = dataSet.Tables["Orders"].Columns["OrderID"];
ForeignKeyConstraint fkeyConstraint =
new ForeignKeyConstraint("fkConstraint", parentCol, childCol);
// Test against existing members using the Equals method.
foreach(ForeignKeyConstraint testConstraint in
dataSet.Tables["Orders"].Constraints)
{
if(fkeyConstraint.Equals(testConstraint)){
Console.WriteLine("Identical ForeignKeyConstraint!");
// Insert code to delete the duplicate object,
// or stop the procedure.
}
}
}
Private Sub CreateConstraint(dataSet As DataSet)
' Create the ForignKeyConstraint with two DataColumn objects.
Dim parentCol As DataColumn = _
dataSet.Tables("Customers").Columns("id")
Dim childCol As DataColumn = _
dataSet.Tables("Orders").Columns("OrderID")
Dim fkeyConstraint As _
New ForeignKeyConstraint("fkConstraint", parentCol, childCol)
' Test against existing members using the Equals method.
Dim testConstraint As ForeignKeyConstraint
For Each testConstraint In dataSet.Tables("Orders").Constraints
If fkeyConstraint.Equals(testConstraint) Then
Console.WriteLine("Identical ForeignKeyConstraint!")
' Insert code to delete the duplicate object,
' or stop the procedure.
End If
Next testConstraint
End Sub