StringColumnConfiguration.IsUnicode Method

 

Configures the column to support Unicode string content.

Namespace:   System.Data.Entity.ModelConfiguration.Configuration
Assembly:  EntityFramework (in EntityFramework.dll)

NameDescription
System_CAPS_pubmethodIsUnicode()

Configures the column to support Unicode string content.

System_CAPS_pubmethodIsUnicode(Nullable<Boolean>)

Configures whether or not the column supports Unicode string content.


StringColumnConfiguration.IsUnicode Method ()

Configures the column to support Unicode string content.

public StringColumnConfiguration IsUnicode()

Return Value

Type: System.Data.Entity.ModelConfiguration.Configuration.StringColumnConfiguration

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


StringColumnConfiguration.IsUnicode Method (Nullable<Boolean>)

Configures whether or not the column supports Unicode string content.

public StringColumnConfiguration IsUnicode(
	Nullable<bool> unicode
)

Parameters

unicode
Type: System.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'.

Return Value

Type: System.Data.Entity.ModelConfiguration.Configuration.StringColumnConfiguration

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