StringColumnConfiguration.IsUnicode Method
Configures the column to support Unicode string content.
Assembly: EntityFramework (in EntityFramework.dll)
Name | Description | |
---|---|---|
![]() | IsUnicode() | Configures the column to support Unicode string content. |
![]() | IsUnicode(Nullable<Boolean>) | Configures whether or not the column supports Unicode string content. |
StringColumnConfiguration.IsUnicode Method ()
Configures the column to support Unicode string content.
Return Value
Type: System.Data.Entity.ModelConfiguration.Configuration.StringColumnConfigurationThe 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.
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.StringColumnConfigurationThe same StringColumnConfiguration instance so that multiple calls can be chained.