MigrationsEndPointExtensions.UseMigrationsEndPoint Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
UseMigrationsEndPoint(IApplicationBuilder) |
Processes requests to execute migrations operations. The middleware will listen for requests made to DefaultPath. |
UseMigrationsEndPoint(IApplicationBuilder, MigrationsEndPointOptions) |
Processes requests to execute migrations operations. The middleware will listen for requests to the path configured in |
UseMigrationsEndPoint(IApplicationBuilder)
Processes requests to execute migrations operations. The middleware will listen for requests made to DefaultPath.
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Builder::IApplicationBuilder ^ UseMigrationsEndPoint(Microsoft::AspNetCore::Builder::IApplicationBuilder ^ app);
public static Microsoft.AspNetCore.Builder.IApplicationBuilder UseMigrationsEndPoint (this Microsoft.AspNetCore.Builder.IApplicationBuilder app);
static member UseMigrationsEndPoint : Microsoft.AspNetCore.Builder.IApplicationBuilder -> Microsoft.AspNetCore.Builder.IApplicationBuilder
<Extension()>
Public Function UseMigrationsEndPoint (app As IApplicationBuilder) As IApplicationBuilder
Parameters
The IApplicationBuilder to register the middleware with.
Returns
The same IApplicationBuilder instance so that multiple calls can be chained.
Applies to
UseMigrationsEndPoint(IApplicationBuilder, MigrationsEndPointOptions)
Processes requests to execute migrations operations. The middleware will listen for requests to the path configured in options
.
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Builder::IApplicationBuilder ^ UseMigrationsEndPoint(Microsoft::AspNetCore::Builder::IApplicationBuilder ^ app, Microsoft::AspNetCore::Builder::MigrationsEndPointOptions ^ options);
public static Microsoft.AspNetCore.Builder.IApplicationBuilder UseMigrationsEndPoint (this Microsoft.AspNetCore.Builder.IApplicationBuilder app, Microsoft.AspNetCore.Builder.MigrationsEndPointOptions options);
static member UseMigrationsEndPoint : Microsoft.AspNetCore.Builder.IApplicationBuilder * Microsoft.AspNetCore.Builder.MigrationsEndPointOptions -> Microsoft.AspNetCore.Builder.IApplicationBuilder
<Extension()>
Public Function UseMigrationsEndPoint (app As IApplicationBuilder, options As MigrationsEndPointOptions) As IApplicationBuilder
Parameters
The IApplicationBuilder to register the middleware with.
- options
- MigrationsEndPointOptions
An action to set the options for the middleware.
Returns
The same IApplicationBuilder instance so that multiple calls can be chained.