SqlServerModelExtensions.SetHiLoSequenceSchema Method

Definition

Overloads

SetHiLoSequenceSchema(IMutableModel, String)

Sets the schema to use for the default hi-lo sequence.

SetHiLoSequenceSchema(IConventionModel, String, Boolean)

Sets the schema to use for the default hi-lo sequence.

SetHiLoSequenceSchema(IMutableModel, String)

Sets the schema to use for the default hi-lo sequence.

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

Parameters

model
IMutableModel

The model.

value
String

The value to set.

Applies to

SetHiLoSequenceSchema(IConventionModel, String, Boolean)

Sets the schema to use for the default hi-lo sequence.

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

Parameters

model
IConventionModel

The model.

value
String

The value to set.

fromDataAnnotation
Boolean

Indicates whether the configuration was specified using a data annotation.

Returns

The configured value.

Applies to