PropertiesConfigurationBuilder<TProperty>.AreUnicode(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.PropertiesConfigurationBuilder<TProperty> AreUnicode (bool unicode = true);
override this.AreUnicode : bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.PropertiesConfigurationBuilder<'Property>
Public Overridable Function AreUnicode (Optional unicode As Boolean = true) As PropertiesConfigurationBuilder(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