Convention.Types 方法

定义

重载

Types()

开始配置适用于模型中所有映射类型的轻型约定。

Types<T>()

开始配置轻量级约定,该约定适用于派生自指定类型或实现指定类型的模型中的所有映射类型。

Types()

开始配置适用于模型中所有映射类型的轻型约定。

public System.Data.Entity.ModelConfiguration.Configuration.TypeConventionConfiguration Types ();
member this.Types : unit -> System.Data.Entity.ModelConfiguration.Configuration.TypeConventionConfiguration
Public Function Types () As TypeConventionConfiguration

返回

约定的配置对象。

适用于

Types<T>()

开始配置轻量级约定,该约定适用于派生自指定类型或实现指定类型的模型中的所有映射类型。

public System.Data.Entity.ModelConfiguration.Configuration.TypeConventionConfiguration<T> Types<T> () where T : class;
member this.Types : unit -> System.Data.Entity.ModelConfiguration.Configuration.TypeConventionConfiguration<'T (requires 'T : null)> (requires 'T : null)
Public Function Types(Of T As Class) () As TypeConventionConfiguration(Of T)

类型参数

T

此约定将应用到的实体的类型。

返回

约定的配置对象。

注解

此方法不会向模型添加新类型。

适用于