RelationalModelExtensions.SetCollation Method

Definition

Overloads

SetCollation(IMutableModel, String)

Sets the database collation.

SetCollation(IConventionModel, String, Boolean)

Sets the database collation.

SetCollation(IMutableModel, String)

Sets the database collation.

public static void SetCollation (this Microsoft.EntityFrameworkCore.Metadata.IMutableModel model, string value);
public static void SetCollation (this Microsoft.EntityFrameworkCore.Metadata.IMutableModel model, string? value);
static member SetCollation : Microsoft.EntityFrameworkCore.Metadata.IMutableModel * string -> unit
<Extension()>
Public Sub SetCollation (model As IMutableModel, value As String)

Parameters

model
IMutableModel

The model to set the collation for.

value
String

The value to set.

Applies to

SetCollation(IConventionModel, String, Boolean)

Sets the database collation.

public static string SetCollation (this Microsoft.EntityFrameworkCore.Metadata.IConventionModel model, string value, bool fromDataAnnotation = false);
public static string? SetCollation (this Microsoft.EntityFrameworkCore.Metadata.IConventionModel model, string? value, bool fromDataAnnotation = false);
static member SetCollation : Microsoft.EntityFrameworkCore.Metadata.IConventionModel * string * bool -> string
<Extension()>
Public Function SetCollation (model As IConventionModel, value As String, Optional fromDataAnnotation As Boolean = false) As String

Parameters

model
IConventionModel

The model to set the collation for.

value
String

The value to set.

fromDataAnnotation
Boolean

Indicates whether the configuration was specified using a data annotation.

Returns

The configured collation.

Applies to