DbContextOptions.GetExtension<TExtension> Method

Definition

Gets the extension of the specified type. Throws if no extension of the specified type is configured.

public virtual TExtension GetExtension<TExtension> () where TExtension : class, Microsoft.EntityFrameworkCore.Infrastructure.IDbContextOptionsExtension;
abstract member GetExtension : unit -> 'Extension (requires 'Extension : null and 'Extension :> Microsoft.EntityFrameworkCore.Infrastructure.IDbContextOptionsExtension)
override this.GetExtension : unit -> 'Extension (requires 'Extension : null and 'Extension :> Microsoft.EntityFrameworkCore.Infrastructure.IDbContextOptionsExtension)
Public Overridable Function GetExtension(Of TExtension As {Class, IDbContextOptionsExtension}) () As TExtension

Type Parameters

TExtension

The type of the extension to get.

Returns

TExtension

The extension.

Applies to