다음을 통해 공유


IMutableModel.RemoveEntityType 메서드

정의

오버로드

RemoveEntityType(String)

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

RemoveEntityType(Type, String, IMutableEntityType)

지정된 형식을 사용하여 엔터티 형식을 제거하여 탐색 이름 및 엔터티 형식을 정의합니다.

RemoveEntityType(String, String, IMutableEntityType)

지정된 형식을 사용하여 엔터티 형식을 제거하여 탐색 이름 및 엔터티 형식을 정의합니다.

RemoveEntityType(IMutableEntityType)

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

RemoveEntityType(Type)

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

RemoveEntityType(String)

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

public Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType RemoveEntityType (string name);
public Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType? RemoveEntityType (string name);
abstract member RemoveEntityType : string -> Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType
Public Function RemoveEntityType (name As String) As IMutableEntityType

매개 변수

name
String

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

반환

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

적용 대상

RemoveEntityType(Type, String, IMutableEntityType)

지정된 형식을 사용하여 엔터티 형식을 제거하여 탐색 이름 및 엔터티 형식을 정의합니다.

public Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType? RemoveEntityType (Type type, string definingNavigationName, Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType definingEntityType);
abstract member RemoveEntityType : Type * string * Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType -> Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType
Public Function RemoveEntityType (type As Type, definingNavigationName As String, definingEntityType As IMutableEntityType) As IMutableEntityType

매개 변수

type
Type

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

definingNavigationName
String

정의 탐색입니다.

definingEntityType
IMutableEntityType

정의하는 엔터티 형식입니다.

반환

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

적용 대상

RemoveEntityType(String, String, IMutableEntityType)

지정된 형식을 사용하여 엔터티 형식을 제거하여 탐색 이름 및 엔터티 형식을 정의합니다.

public Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType RemoveEntityType (string name, string definingNavigationName, Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType definingEntityType);
public Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType? RemoveEntityType (string name, string definingNavigationName, Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType definingEntityType);
abstract member RemoveEntityType : string * string * Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType -> Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType
Public Function RemoveEntityType (name As String, definingNavigationName As String, definingEntityType As IMutableEntityType) As IMutableEntityType

매개 변수

name
String

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

definingNavigationName
String

정의 탐색입니다.

definingEntityType
IMutableEntityType

정의하는 엔터티 형식입니다.

반환

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

적용 대상

RemoveEntityType(IMutableEntityType)

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

public void RemoveEntityType (Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType entityType);
public Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType RemoveEntityType (Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType entityType);
public Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType? RemoveEntityType (Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType entityType);
abstract member RemoveEntityType : Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType -> unit
abstract member RemoveEntityType : Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType -> Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType
Public Sub RemoveEntityType (entityType As IMutableEntityType)
Public Function RemoveEntityType (entityType As IMutableEntityType) As IMutableEntityType

매개 변수

entityType
IMutableEntityType

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

반환

제거된 엔터티 형식이거나 null 엔터티 형식을 찾을 수 없는 경우 입니다.

적용 대상

RemoveEntityType(Type)

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

public Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType? RemoveEntityType (Type type);
abstract member RemoveEntityType : Type -> Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType
Public Function RemoveEntityType (type As Type) As IMutableEntityType

매개 변수

type
Type

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

반환

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

적용 대상