StringPropertyConfiguration.IsUnicode Method

 

Configures the property to support Unicode string content.

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

NameDescription
System_CAPS_pubmethodIsUnicode()

Configures the property to support Unicode string content.

System_CAPS_pubmethodIsUnicode(Nullable<Boolean>)

Configures whether or not the property supports Unicode string content.


StringPropertyConfiguration.IsUnicode Method ()

Configures the property to support Unicode string content.

public StringPropertyConfiguration IsUnicode()

Return Value

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

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


StringPropertyConfiguration.IsUnicode Method (Nullable<Boolean>)

Configures whether or not the property supports Unicode string content.

public StringPropertyConfiguration IsUnicode(
	Nullable<bool> unicode
)

Parameters

unicode
Type: System.Nullable<Boolean>

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

Return Value

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

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