IConventionSetPlugin 接口

定义

EF 内部服务提供程序上的一项服务,允许扩展自定义正在使用的 ConventionSet

此类型通常由扩展使用。 它通常不用于应用程序代码。

public interface IConventionSetPlugin
type IConventionSetPlugin = interface
Public Interface IConventionSetPlugin

注解

数据库提供程序应实现 IProviderConventionSetBuilder。 此服务仅适用于需要自定义约定的非提供程序扩展。

服务生存期为 Scoped ,允许多次注册。 这意味着每个 DbContext 实例都将使用此服务自己的一组实例。 实现可能依赖于注册到任何生存期的其他服务。 实现不需要是线程安全的。

有关详细信息和示例,请参阅 模型生成约定

方法

ModifyConventions(ConventionSet)

调用 以自定义或以其他方式修改给定的约定集。

适用于