Compartilhar via


AssociationAttribute.DeleteRule Propriedade

Definição

Obtém ou define o comportamento de exclusão de uma associação.

public:
 property System::String ^ DeleteRule { System::String ^ get(); void set(System::String ^ value); };
public string DeleteRule { get; set; }
member this.DeleteRule : string with get, set
Public Property DeleteRule As String

Valor da propriedade

Uma cadeia de caracteres que representa a regra.

Exemplos

[Association(Name="FK_Products_Categories", Storage="_Products", OtherKey="CategoryID", DeleteRule="NO ACTION")]
public EntitySet<Product> Products
{
    get
    {
        return this._Products;
    }
    set
    {
        this._Products.Assign(value);
    }
}
<Association(Name:="FK_Products_Categories", Storage:="_Products", OtherKey:="CategoryID", DeleteRule:="NO ACTION")>  _
Public Property Products() As EntitySet(Of Product)
    Get
        Return Me._Products
    End Get
    Set
        Me._Products.Assign(value)
    End Set
End Property

Comentários

Se definido como nulo, nenhum comportamento de exclusão será adicionado. Por exemplo, "CASCADE" adicionaria "ON DELETE CASCADE" à relação de chave estrangeira.

No exemplo a seguir, a regra é não executar nenhuma ação.

Aplica-se a