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