DbModelBuilder.Ignore<T>-Methode
[Diese Seite bezieht sich auf Entity Framework Version 6. Die neueste Version ist als 'Entity Framework' NuGet-Paket verfügbar. Weitere Informationen zu Entity Framework finden Sie unter msdn.com/data/ef.]
Schließt einen Typ aus dem Modell aus. Wird verwendet, um Typen aus dem Modell zu entfernen, die während der Ermittlung des ursprünglichen Modells konventionsgemäß hinzugefügt wurden.
Namespace: System.Data.Entity
Assembly: EntityFramework (in EntityFramework.dll)
Syntax
'Declaration
<SuppressMessageAttribute("Microsoft.Design", "CA1004:GenericMethodsShouldProvideTypeParameter")> _
Public Overridable Function Ignore(Of T As Class) As DbModelBuilder
'Usage
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.
Typparameter
- T
Der auszuschließende Typ.
Rückgabewert
Typ: System.Data.Entity.DbModelBuilder
Die gleiche DbModelBuilder-Instanz, sodass mehrere Aufrufe verkettet werden können.