다음을 통해 공유


MutableModelExtensions.RemoveEntityType 메서드

정의

오버로드

RemoveEntityType(IMutableModel, IMutableEntityType)

모델에서 엔터티 형식을 제거합니다.

RemoveEntityType(IMutableModel, String)

모델에서 탐색을 정의하지 않고 엔터티 형식을 제거합니다.

RemoveEntityType(IMutableModel, Type)

모델에서 엔터티 형식을 제거합니다.

RemoveEntityType(IMutableModel, String, String, IMutableEntityType)

모델에서 정의 탐색을 사용하여 엔터티 형식을 제거합니다.

RemoveEntityType(IMutableModel, Type, String, IMutableEntityType)

모델에서 정의 탐색을 사용하여 엔터티 형식을 제거합니다.

RemoveEntityType(IMutableModel, IMutableEntityType)

모델에서 엔터티 형식을 제거합니다.

public static Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType RemoveEntityType (this Microsoft.EntityFrameworkCore.Metadata.IMutableModel model, Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType entityType);
static member RemoveEntityType : Microsoft.EntityFrameworkCore.Metadata.IMutableModel * Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType -> Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType
<Extension()>
Public Function RemoveEntityType (model As IMutableModel, entityType As IMutableEntityType) As IMutableEntityType

매개 변수

model
IMutableModel

엔터티 형식을 제거할 모델입니다.

entityType
IMutableEntityType

제거할 엔터티 형식입니다.

반환

제거된 엔터티 형식입니다.

적용 대상

RemoveEntityType(IMutableModel, String)

모델에서 탐색을 정의하지 않고 엔터티 형식을 제거합니다.

public static Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType RemoveEntityType (this Microsoft.EntityFrameworkCore.Metadata.IMutableModel model, string name);
static member RemoveEntityType : Microsoft.EntityFrameworkCore.Metadata.IMutableModel * string -> Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType
<Extension()>
Public Function RemoveEntityType (model As IMutableModel, name As String) As IMutableEntityType

매개 변수

model
IMutableModel

엔터티 형식을 제거할 모델입니다.

name
String

제거할 엔터티 형식의 이름입니다.

반환

제거된 엔터티 형식입니다.

적용 대상

RemoveEntityType(IMutableModel, Type)

모델에서 엔터티 형식을 제거합니다.

public static Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType RemoveEntityType (this Microsoft.EntityFrameworkCore.Metadata.IMutableModel model, Type type);
static member RemoveEntityType : Microsoft.EntityFrameworkCore.Metadata.IMutableModel * Type -> Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType
<Extension()>
Public Function RemoveEntityType (model As IMutableModel, type As Type) As IMutableEntityType

매개 변수

model
IMutableModel

엔터티 형식을 제거할 모델입니다.

type
Type

제거할 엔터티 형식입니다.

반환

제거된 엔터티 형식입니다.

적용 대상

RemoveEntityType(IMutableModel, String, String, IMutableEntityType)

모델에서 정의 탐색을 사용하여 엔터티 형식을 제거합니다.

public static Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType RemoveEntityType (this Microsoft.EntityFrameworkCore.Metadata.IMutableModel model, string name, string definingNavigationName, Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType definingEntityType);
static member RemoveEntityType : Microsoft.EntityFrameworkCore.Metadata.IMutableModel * string * string * Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType -> Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType
<Extension()>
Public Function RemoveEntityType (model As IMutableModel, name As String, definingNavigationName As String, definingEntityType As IMutableEntityType) As IMutableEntityType

매개 변수

model
IMutableModel

엔터티 형식을 제거할 모델입니다.

name
String

제거할 엔터티 형식의 이름입니다.

definingNavigationName
String

정의 탐색입니다.

definingEntityType
IMutableEntityType

정의 엔터티 형식입니다.

반환

제거된 엔터티 형식입니다.

적용 대상

RemoveEntityType(IMutableModel, Type, String, IMutableEntityType)

모델에서 정의 탐색을 사용하여 엔터티 형식을 제거합니다.

public static Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType RemoveEntityType (this Microsoft.EntityFrameworkCore.Metadata.IMutableModel model, Type type, string definingNavigationName, Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType definingEntityType);
static member RemoveEntityType : Microsoft.EntityFrameworkCore.Metadata.IMutableModel * Type * string * Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType -> Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType
<Extension()>
Public Function RemoveEntityType (model As IMutableModel, type As Type, definingNavigationName As String, definingEntityType As IMutableEntityType) As IMutableEntityType

매개 변수

model
IMutableModel

엔터티 형식을 제거할 모델입니다.

type
Type

이 엔터티 형식의 인스턴스를 나타내는 데 사용되는 CLR 클래스입니다.

definingNavigationName
String

정의 탐색입니다.

definingEntityType
IMutableEntityType

정의 엔터티 형식입니다.

반환

제거된 엔터티 형식입니다.

적용 대상