ChangeAction Enum
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.
Describes the type of change the entity will undergo when changes are submitted to the database.
public enum class ChangeAction
public enum ChangeAction
type ChangeAction =
Public Enum ChangeAction
- Inheritance
Fields
Name | Value | Description |
---|---|---|
None | 0 | The entity will not be submitted. |
Delete | 1 | The entity will be deleted. |
Insert | 2 | The entity will be inserted. |
Update | 3 | The entity will be updated. |
Examples
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
Remarks
Use with OnValidate()
in LINQ to SQL applications to specify or omit validation based on the type of change being submitted.
Applies to
Vertu í samstarfi við okkur á GitHub
Heimildina fyrir þetta efni er að finna á GitHub, þar sem þú getur líka búið til og farið yfir vandamál og sameinað beiðnir. Frekari upplýsingar er að finna í framlagshandbók okkar.