DecimalPropertyConfiguration.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.DecimalPropertyConfiguration IsConcurrencyToken ();
override this.IsConcurrencyToken : unit -> System.Data.Entity.ModelConfiguration.Configuration.DecimalPropertyConfiguration
Public Function IsConcurrencyToken () As DecimalPropertyConfiguration

Returns

The same DecimalPropertyConfiguration 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.DecimalPropertyConfiguration IsConcurrencyToken (Nullable<bool> concurrencyToken);
override this.IsConcurrencyToken : Nullable<bool> -> System.Data.Entity.ModelConfiguration.Configuration.DecimalPropertyConfiguration
Public Function IsConcurrencyToken (concurrencyToken As Nullable(Of Boolean)) As DecimalPropertyConfiguration

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 DecimalPropertyConfiguration instance so that multiple calls can be chained.

Applies to