UpdateCheck Property
Collapse the table of content
Expand the table of content

ColumnAttribute.UpdateCheck Property

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Gets or sets how LINQ to SQL approaches the detection of optimistic concurrency conflicts.

Namespace:  System.Data.Linq.Mapping
Assembly:  System.Data.Linq (in System.Data.Linq.dll)

public UpdateCheck UpdateCheck { get; set; }

Property Value

Type: System.Data.Linq.Mapping.UpdateCheck
Default = Always, unless IsVersion is true for a member.
Other values are Never and WhenChanged.

When this property is used with one of three enums, it determines how LINQ to SQL detects concurrency conflicts.

If no member is designed as IsVersion=true, original member values are compared with the current database state.

The following enums are available:

  • Always   Always use this column for conflict detection.

  • Never   Never use this column for conflict detection.

  • WhenChanged   Use this column only when the member has been changed by the application.

Windows Phone OS

Supported in: 8.1, 8.0

Show:
© 2017 Microsoft