Share via


DeleteHistoryOperation(String, String, Object) Constructor

Definition

Initializes a new instance of the DeleteHistoryOperation class.

public DeleteHistoryOperation (string table, string migrationId, object anonymousArguments = null);
new System.Data.Entity.Migrations.Model.DeleteHistoryOperation : string * string * obj -> System.Data.Entity.Migrations.Model.DeleteHistoryOperation
Public Sub New (table As String, migrationId As String, Optional anonymousArguments As Object = null)

Parameters

table
String

Name of the migrations history table.

migrationId
String

Id of the migration record to be deleted.

anonymousArguments
Object

Additional arguments that may be processed by providers. Use anonymous type syntax to specify arguments e.g. 'new { SampleArgument = "MyValue" }'.

Applies to