DbContextServiceBasedBuilder<TContext>.WithDbContext<TDbContext>(Action<IServiceProvider, DbContextOptionsBuilder>) Method
Allows you to configure the specified DbContext
.
Namespace: DevExpress.ExpressApp.ApplicationBuilder
Assembly: DevExpress.ExpressApp.EFCore.v24.1.dll
NuGet Package: DevExpress.ExpressApp.EFCore
Declaration
public IObjectSpaceProviderServiceBasedBuilder<TContext> WithDbContext<TDbContext>(
Action<IServiceProvider, DbContextOptionsBuilder> configureOptions
)
where TDbContext : DbContext
Parameters
Name | Type | Description |
---|---|---|
configureOptions | Action<IServiceProvider, DbContextOptionsBuilder> | A delegate that configures |
Type Parameters
Name | Description |
---|---|
TDbContext | The |
Returns
Type | Description |
---|---|
IObjectSpaceProviderServiceBasedBuilder<TContext> | Allows you to register and configure Object Space Providers in your application, and chain further provider registrations. |
Remarks
The following example demonstrates how to use this method:
File: MySolution.Blazor.Server\Startup.cs.
using DevExpress.ExpressApp.ApplicationBuilder;
using DevExpress.ExpressApp.Blazor.ApplicationBuilder;
// ...
public class Startup {
// ...
public void ConfigureServices(IServiceCollection services) {
// ...
services.AddXaf(Configuration, builder => {
builder.UseApplication<MySolutionBlazorApplication>();
builder.ObjectSpaceProviders
// ...
.AddSecuredEFCore()
.WithDbContext<MySolutionDbContext>((serviceProvider, options) => {
// ...
})
});
// ...
}
}
See Also