Share via


ToolingFacade.ScriptUpdate(String, String, Boolean) Method

Definition

Generates a SQL script to migrate between two migrations.

public string ScriptUpdate (string sourceMigration, string targetMigration, bool force);
member this.ScriptUpdate : string * string * bool -> string
Public Function ScriptUpdate (sourceMigration As String, targetMigration As String, force As Boolean) As String

Parameters

sourceMigration
String

The migration to update from. If null is supplied, a script to update the current database will be produced.

targetMigration
String

The migration to update to. If null is supplied, a script to update to the latest migration will be produced.

force
Boolean

Value indicating if data loss during automatic migration is acceptable.

Returns

The generated SQL script.

Applies to