ChangeAction Enumerazione
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Descrive il tipo di modifica che subirà l'entità quando le modifiche verranno inviate al database.
public enum class ChangeAction
public enum ChangeAction
type ChangeAction =
Public Enum ChangeAction
- Ereditarietà
Campi
Delete | 1 | L'entità verrà eliminata. |
Insert | 2 | L'entità verrà inserita. |
None | 0 | L'entità non verrà inviata. |
Update | 3 | L'entità verrà aggiornata. |
Esempio
void OnValidate(ChangeAction action)
{
if (action == ChangeAction.Insert)
{
Console.WriteLine("Notify billing office.");
}
}
Public Sub OnValidate(ByVal action As System.Data.Linq.ChangeAction)
If action = ChangeAction.Insert Then
Console.WriteLine("Notify billing office.")
End If
End Sub
Commenti
Usare con OnValidate()
in LINQ to SQL applicazioni per specificare o omettere la convalida in base al tipo di modifica da inviare.