Share via


StringPropertyConfiguration.IsConcurrencyToken Method

Definition

Overloads

IsConcurrencyToken()

Configures the property to be used as an optimistic concurrency token.

IsConcurrencyToken(Nullable<Boolean>)

Configures whether or not the property is to be used as an optimistic concurrency token.

IsConcurrencyToken()

Configures the property to be used as an optimistic concurrency token.

public System.Data.Entity.ModelConfiguration.Configuration.StringPropertyConfiguration IsConcurrencyToken ();
override this.IsConcurrencyToken : unit -> System.Data.Entity.ModelConfiguration.Configuration.StringPropertyConfiguration
Public Function IsConcurrencyToken () As StringPropertyConfiguration

Returns

The same StringPropertyConfiguration instance so that multiple calls can be chained.

Applies to

IsConcurrencyToken(Nullable<Boolean>)

Configures whether or not the property is to be used as an optimistic concurrency token.

public System.Data.Entity.ModelConfiguration.Configuration.StringPropertyConfiguration IsConcurrencyToken (Nullable<bool> concurrencyToken);
override this.IsConcurrencyToken : Nullable<bool> -> System.Data.Entity.ModelConfiguration.Configuration.StringPropertyConfiguration
Public Function IsConcurrencyToken (concurrencyToken As Nullable(Of Boolean)) As StringPropertyConfiguration

Parameters

concurrencyToken
Nullable<Boolean>

Value indicating if the property is a concurrency token or not. Specifying 'null' will remove the concurrency token facet from the property. Specifying 'null' will cause the same runtime behavior as specifying 'false'.

Returns

The same StringPropertyConfiguration instance so that multiple calls can be chained.

Applies to