This content is part of a third party extension that is not supported by the Cake project.
For more information about this extension see
Cake.DotNetCoreEf.
Summary
Remove migrations for the context with settings.
Syntax
public static void DotNetCoreEfMigrationRemove(this ICakeContext context, string project, ProcessArgumentBuilder arguments, DotNetCoreEfMigrationRemoveSettings settings)
Examples
var settings = new DotNetCoreEfMigrationRemoveSettings
{
Context = SchoolContext
};
DotNetCoreEfMigrationRemove("./src/Project", "--args", settings);
Attributes
Type |
Description |
CakeMethodAliasAttribute |
|
CakeAliasCategoryAttribute |
|
CakeNamespaceImportAttribute |
|
Parameters
Name |
Type |
Description |
context |
ICakeContext |
The context. |
project |
string |
The project path. |
arguments |
ProcessArgumentBuilder |
The arguments. |
settings |
DotNetCoreEfMigrationRemoveSettings |
The settings. |
Return Value