MigrationsSqlGenerator.TryGetVersion(IModel, String) Method

Definition

Gets the product version used to generate the current migration. Providers can use this to preserve compatibility with migrations generated using previous versions.

protected virtual bool TryGetVersion (Microsoft.EntityFrameworkCore.Metadata.IModel model, out string version);
protected virtual bool TryGetVersion (Microsoft.EntityFrameworkCore.Metadata.IModel? model, out string? version);
abstract member TryGetVersion : Microsoft.EntityFrameworkCore.Metadata.IModel * string -> bool
override this.TryGetVersion : Microsoft.EntityFrameworkCore.Metadata.IModel * string -> bool
Protected Overridable Function TryGetVersion (model As IModel, ByRef version As String) As Boolean

Parameters

model
IModel

The target model.

version
String

The version.

Returns

true if the version could be retrieved.

Applies to