DbModelBuilder.Ignore 方法 (IEnumerable<Type>)
[本页针对的是实体框架版本 6。最新版本以“实体框架”NuGet 包的形式提供。有关实体框架的更多信息,请参见 msdn.com/data/ef。]
从模型中排除指定的类型。 这用于在初始模型发现期间从根据约定添加的模型中移除类型。
命名空间: System.Data.Entity
程序集: EntityFramework(在 EntityFramework.dll 中)
语法
声明
Public Overridable Function Ignore ( _
types As IEnumerable(Of Type) _
) As DbModelBuilder
用法
Dim instance As DbModelBuilder
Dim types As IEnumerable(Of Type)
Dim returnValue As DbModelBuilder
returnValue = instance.Ignore(types)
public virtual DbModelBuilder Ignore(
IEnumerable<Type> types
)
public:
virtual DbModelBuilder^ Ignore(
IEnumerable<Type^>^ types
)
abstract Ignore :
types:IEnumerable<Type> -> DbModelBuilder
override Ignore :
types:IEnumerable<Type> -> DbModelBuilder
public function Ignore(
types : IEnumerable<Type>
) : DbModelBuilder
参数
- types
类型:System.Collections.Generic.IEnumerable<Type>
要从模型中排除的类型。
返回值
类型:System.Data.Entity.DbModelBuilder
同一个 DbModelBuilder 实例,以便多个调用可以链接在一起。