ModelBuilder.Ignore 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
Ignore(String) |
從模型中排除具有指定名稱的實體類型。 這個方法通常用來從慣例新增的模型中移除類型。 |
Ignore(Type) |
從模型中排除具有指定 CLR 類型的實體類型。 這個方法通常用來從慣例新增的模型中移除類型。 |
Ignore<TEntity>() |
從模型中排除指定的實體類型。 這個方法通常用來從慣例新增的模型中移除類型。 |
Ignore(String)
從模型中排除具有指定名稱的實體類型。 這個方法通常用來從慣例新增的模型中移除類型。
public virtual Microsoft.EntityFrameworkCore.ModelBuilder Ignore (string typeName);
abstract member Ignore : string -> Microsoft.EntityFrameworkCore.ModelBuilder
override this.Ignore : string -> Microsoft.EntityFrameworkCore.ModelBuilder
Public Overridable Function Ignore (typeName As String) As ModelBuilder
參數
- typeName
- String
要從模型中移除之實體類型的名稱。
傳回
相同的 ModelBuilder 實例,以便鏈結其他組態呼叫。
備註
如需詳細資訊和範例,請參閱 模型化實體類型 。
適用於
Ignore(Type)
從模型中排除具有指定 CLR 類型的實體類型。 這個方法通常用來從慣例新增的模型中移除類型。
public virtual Microsoft.EntityFrameworkCore.ModelBuilder Ignore (Type type);
abstract member Ignore : Type -> Microsoft.EntityFrameworkCore.ModelBuilder
override this.Ignore : Type -> Microsoft.EntityFrameworkCore.ModelBuilder
Public Overridable Function Ignore (type As Type) As ModelBuilder
參數
- type
- Type
要從模型中移除的實體類型。
傳回
相同的 ModelBuilder 實例,以便鏈結其他組態呼叫。
備註
如需詳細資訊和範例,請參閱 模型化實體類型 。
適用於
Ignore<TEntity>()
從模型中排除指定的實體類型。 這個方法通常用來從慣例新增的模型中移除類型。
public virtual Microsoft.EntityFrameworkCore.ModelBuilder Ignore<TEntity> () where TEntity : class;
abstract member Ignore : unit -> Microsoft.EntityFrameworkCore.ModelBuilder (requires 'Entity : null)
override this.Ignore : unit -> Microsoft.EntityFrameworkCore.ModelBuilder (requires 'Entity : null)
Public Overridable Function Ignore(Of TEntity As Class) () As ModelBuilder
類型參數
- TEntity
要從模型中移除的實體類型。
傳回
相同的 ModelBuilder 實例,以便鏈結其他組態呼叫。
備註
如需詳細資訊和範例,請參閱 模型化實體類型 。