다음을 통해 공유


IConventionModel.RemoveEntityType 메서드

정의

오버로드

RemoveEntityType(IConventionEntityType)

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

RemoveEntityType(String)

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

RemoveEntityType(Type)

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

RemoveEntityType(String, String, IConventionEntityType)

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

RemoveEntityType(Type, String, IConventionEntityType)

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

RemoveEntityType(IConventionEntityType)

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

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

매개 변수

entityType
IConventionEntityType

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

반환

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

적용 대상

RemoveEntityType(String)

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

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

매개 변수

name
String

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

반환

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

적용 대상

RemoveEntityType(Type)

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

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

매개 변수

type
Type

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

반환

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

적용 대상

RemoveEntityType(String, String, IConventionEntityType)

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

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

매개 변수

name
String

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

definingNavigationName
String

정의 탐색입니다.

definingEntityType
IConventionEntityType

정의 엔터티 형식입니다.

반환

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

적용 대상

RemoveEntityType(Type, String, IConventionEntityType)

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

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

매개 변수

type
Type

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

definingNavigationName
String

정의 탐색입니다.

definingEntityType
IConventionEntityType

정의 엔터티 형식입니다.

반환

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

적용 대상