CoreOptionsExtension.WithReplacedService 方法

定义

重载

WithReplacedService(Type, Type)

创建一个新的 实例,其所有选项都与此实例相同,但给定的选项已更改。 直接调用此方法是不寻常的。 请改用 DbContextOptionsBuilder

WithReplacedService(Type, Type, Type)

创建一个新的 实例,其所有选项都与此实例相同,但给定的选项已更改。 直接调用此方法是不寻常的。 请改用 DbContextOptionsBuilder

WithReplacedService(Type, Type)

Source:
CoreOptionsExtension.cs
Source:
CoreOptionsExtension.cs
Source:
CoreOptionsExtension.cs
Source:
CoreOptionsExtension.cs

创建一个新的 实例,其所有选项都与此实例相同,但给定的选项已更改。 直接调用此方法是不寻常的。 请改用 DbContextOptionsBuilder

public virtual Microsoft.EntityFrameworkCore.Infrastructure.CoreOptionsExtension WithReplacedService (Type serviceType, Type implementationType);
abstract member WithReplacedService : Type * Type -> Microsoft.EntityFrameworkCore.Infrastructure.CoreOptionsExtension
override this.WithReplacedService : Type * Type -> Microsoft.EntityFrameworkCore.Infrastructure.CoreOptionsExtension
Public Overridable Function WithReplacedService (serviceType As Type, implementationType As Type) As CoreOptionsExtension

参数

serviceType
Type

服务协定。

implementationType
Type

要用于服务的实现类型。

返回

选项已更改的新实例。

适用于

WithReplacedService(Type, Type, Type)

Source:
CoreOptionsExtension.cs
Source:
CoreOptionsExtension.cs
Source:
CoreOptionsExtension.cs
Source:
CoreOptionsExtension.cs
Source:
CoreOptionsExtension.cs

创建一个新的 实例,其所有选项都与此实例相同,但给定的选项已更改。 直接调用此方法是不寻常的。 请改用 DbContextOptionsBuilder

public virtual Microsoft.EntityFrameworkCore.Infrastructure.CoreOptionsExtension WithReplacedService (Type serviceType, Type newImplementationType, Type currentImplementationType = default);
public virtual Microsoft.EntityFrameworkCore.Infrastructure.CoreOptionsExtension WithReplacedService (Type serviceType, Type newImplementationType, Type? currentImplementationType = default);
abstract member WithReplacedService : Type * Type * Type -> Microsoft.EntityFrameworkCore.Infrastructure.CoreOptionsExtension
override this.WithReplacedService : Type * Type * Type -> Microsoft.EntityFrameworkCore.Infrastructure.CoreOptionsExtension
Public Overridable Function WithReplacedService (serviceType As Type, newImplementationType As Type, Optional currentImplementationType As Type = Nothing) As CoreOptionsExtension

参数

serviceType
Type

服务协定。

newImplementationType
Type

要用于服务的实现类型。

currentImplementationType
Type

要替换的特定现有实现类型。

返回

选项已更改的新实例。

适用于