Share via


StringColumnConfiguration.IsUnicode Method

Definition

Overloads

IsUnicode()

Configures the column to support Unicode string content.

IsUnicode(Nullable<Boolean>)

Configures whether or not the column supports Unicode string content.

IsUnicode()

Configures the column to support Unicode string content.

public System.Data.Entity.ModelConfiguration.Configuration.StringColumnConfiguration IsUnicode ();
member this.IsUnicode : unit -> System.Data.Entity.ModelConfiguration.Configuration.StringColumnConfiguration
Public Function IsUnicode () As StringColumnConfiguration

Returns

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

Applies to

IsUnicode(Nullable<Boolean>)

Configures whether or not the column supports Unicode string content.

public System.Data.Entity.ModelConfiguration.Configuration.StringColumnConfiguration IsUnicode (Nullable<bool> unicode);
member this.IsUnicode : Nullable<bool> -> System.Data.Entity.ModelConfiguration.Configuration.StringColumnConfiguration
Public Function IsUnicode (unicode As Nullable(Of Boolean)) As StringColumnConfiguration

Parameters

unicode
Nullable<Boolean>

Value indicating if the column supports Unicode string content or not. Specifying 'null' will remove the Unicode facet from the column. Specifying 'null' will cause the same runtime behavior as specifying 'false'.

Returns

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

Applies to