IMigrationsCodeGenerator.GenerateSnapshot Method

Definition

Generates the model snapshot code.

public string GenerateSnapshot (string modelSnapshotNamespace, Type contextType, string modelSnapshotName, Microsoft.EntityFrameworkCore.Metadata.IModel model);
public string GenerateSnapshot (string? modelSnapshotNamespace, Type contextType, string modelSnapshotName, Microsoft.EntityFrameworkCore.Metadata.IModel model);
abstract member GenerateSnapshot : string * Type * string * Microsoft.EntityFrameworkCore.Metadata.IModel -> string
Public Function GenerateSnapshot (modelSnapshotNamespace As String, contextType As Type, modelSnapshotName As String, model As IModel) As String

Parameters

modelSnapshotNamespace
String

The model snapshot's namespace.

contextType
Type

The model snapshot's DbContext type.

modelSnapshotName
String

The model snapshot's name.

model
IModel

The model.

Returns

The model snapshot code.

Applies to