ForeignKeyConstraint.AcceptRejectRule-Eigenschaft
Gibt die Aktion an, die für die gesamte Einschränkung ausgeführt werden soll, wenn AcceptChanges aufgerufen wird.
Namespace: System.Data
Assembly: System.Data (in system.data.dll)
Syntax
'Declaration
Public Overridable Property AcceptRejectRule As AcceptRejectRule
'Usage
Dim instance As ForeignKeyConstraint
Dim value As AcceptRejectRule
value = instance.AcceptRejectRule
instance.AcceptRejectRule = value
public virtual AcceptRejectRule AcceptRejectRule { get; set; }
public:
virtual property AcceptRejectRule AcceptRejectRule {
AcceptRejectRule get ();
void set (AcceptRejectRule value);
}
/** @property */
public AcceptRejectRule get_AcceptRejectRule ()
/** @property */
public void set_AcceptRejectRule (AcceptRejectRule value)
public function get AcceptRejectRule () : AcceptRejectRule
public function set AcceptRejectRule (value : AcceptRejectRule)
Eigenschaftenwert
Einer der AcceptRejectRule-Werte. Mögliche Werte sind None und Cascade. Der Standardwert ist None.
Hinweise
Änderungen an einer DataRow oder DataTable sind erst endgültig, wenn die AcceptChanges-Methode aufgerufen wird. An diesem Punkt bestimmt die AcceptRejectRule die Verfahrensweise für alle Werte, die geändert oder gelöscht wurden.
Beispiel
Im folgenden Beispiel wird eine ForeignKeyConstraint erstellt, die zugehörige AcceptRejectRule wird festgelegt, und die Einschränkung wird der ConstraintCollection eines DataTable-Objekts hinzugefügt.
' The next line goes into the Declarations section of the module:
' SuppliersProducts is a class derived from DataSet.
Private suppliersProducts As SuppliersProducts
Private Sub CreateConstraint()
' Declare parent column and child column variables.
Dim parentColumn As DataColumn
Dim childColumn As DataColumn
Dim fkConstraint As ForeignKeyConstraint
' Set parent and child column variables.
parentColumn = suppliersProducts.Tables("Suppliers").Columns("SupplierID")
childColumn = suppliersProducts.Tables("Products").Columns("SupplieriD")
fkConstraint = New ForeignKeyConstraint( _
"SuppierFKConstraint", parentColumn, childColumn)
' Set null values when a value is deleted.
fkConstraint.DeleteRule = Rule.SetNull
fkConstraint.UpdateRule = Rule.Cascade
fkConstraint.AcceptRejectRule = AcceptRejectRule.Cascade
' Add the constraint, and set EnforceConstraints to true.
suppliersProducts.Tables("Suppliers").Constraints.Add(fkConstraint)
suppliersProducts.EnforceConstraints = True
End Sub
Plattformen
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile für Pocket PC, Windows Mobile für Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.
Versionsinformationen
.NET Framework
Unterstützt in: 2.0, 1.1, 1.0
.NET Compact Framework
Unterstützt in: 2.0, 1.0
Siehe auch
Referenz
ForeignKeyConstraint-Klasse
ForeignKeyConstraint-Member
System.Data-Namespace
AcceptRejectRule-Enumeration