PropertyBuilder<TProperty>.IsUnicode(Boolean) Method

Definition

Configures the property as capable of persisting unicode characters. Can only be set on String properties.

public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<TProperty> IsUnicode (bool unicode = true);
override this.IsUnicode : bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<'Property>
Public Overridable Function IsUnicode (Optional unicode As Boolean = true) As PropertyBuilder(Of TProperty)

Parameters

unicode
Boolean

A value indicating whether the property can contain unicode characters.

Returns

The same builder instance so that multiple configuration calls can be chained.

Applies to