StringColumnConfiguration.IsUnicode Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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
Entity Framework