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