Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

IDbContextFactory<TContext> Interface

Definition

Namespace:
Microsoft.EntityFrameworkCore
Assembly:
Microsoft.EntityFrameworkCore.dll
Package:
Microsoft.EntityFrameworkCore v10.0.0
Package:
Microsoft.EntityFrameworkCore v5.0.0
Package:
Microsoft.EntityFrameworkCore v6.0.0
Package:
Microsoft.EntityFrameworkCore v7.0.0
Package:
Microsoft.EntityFrameworkCore v8.0.0
Package:
Microsoft.EntityFrameworkCore v9.0.0
Source:
IDbContextFactory.cs
Source:
IDbContextFactory.cs
Source:
IDbContextFactory.cs
Source:
IDbContextFactory.cs
Source:
IDbContextFactory.cs

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.

Defines a factory for creating DbContext instances.

public interface IDbContextFactory<TContext> where TContext : DbContext
public interface IDbContextFactory<out TContext> where TContext : DbContext
type IDbContextFactory<'Context (requires 'Context :> DbContext)> = interface
Public Interface IDbContextFactory(Of TContext)
Public Interface IDbContextFactory(Of Out TContext)

Type Parameters

TContext

The DbContext type to create.

Derived

Remarks

See Using DbContextFactory for more information and examples.

Methods

Name Description
CreateDbContext()

Creates a new DbContext instance.

CreateDbContextAsync(CancellationToken)

Creates a new DbContext instance in an async context.

Applies to


Feedback

Was this page helpful?