다음을 통해 공유


SqlServerEntityTypeExtensions.IsSqlOutputClauseUsed 메서드

정의

오버로드

IsSqlOutputClauseUsed(IReadOnlyEntityType)

테이블에 변경 내용을 저장할 때 SQL OUTPUT 절을 사용할지 여부를 나타내는 값을 반환합니다. OUTPUT 절은 트리거가 있는 테이블과 같은 특정 SQL Server 기능과 호환되지 않습니다.

IsSqlOutputClauseUsed(IReadOnlyEntityType, StoreObjectIdentifier)

지정된 테이블에 변경 내용을 저장할 때 SQL OUTPUT 절을 사용할지 여부를 나타내는 값을 반환합니다. OUTPUT 절은 트리거가 있는 테이블과 같은 특정 SQL Server 기능과 호환되지 않습니다.

IsSqlOutputClauseUsed(IReadOnlyEntityType)

테이블에 변경 내용을 저장할 때 SQL OUTPUT 절을 사용할지 여부를 나타내는 값을 반환합니다. OUTPUT 절은 트리거가 있는 테이블과 같은 특정 SQL Server 기능과 호환되지 않습니다.

public static bool IsSqlOutputClauseUsed (this Microsoft.EntityFrameworkCore.Metadata.IReadOnlyEntityType entityType);
static member IsSqlOutputClauseUsed : Microsoft.EntityFrameworkCore.Metadata.IReadOnlyEntityType -> bool
<Extension()>
Public Function IsSqlOutputClauseUsed (entityType As IReadOnlyEntityType) As Boolean

매개 변수

entityType
IReadOnlyEntityType

엔터티 형식입니다.

반환

true SQL OUTPUT 절을 사용하여 변경 내용을 테이블에 저장하면 입니다.

적용 대상

IsSqlOutputClauseUsed(IReadOnlyEntityType, StoreObjectIdentifier)

지정된 테이블에 변경 내용을 저장할 때 SQL OUTPUT 절을 사용할지 여부를 나타내는 값을 반환합니다. OUTPUT 절은 트리거가 있는 테이블과 같은 특정 SQL Server 기능과 호환되지 않습니다.

public static bool IsSqlOutputClauseUsed (this Microsoft.EntityFrameworkCore.Metadata.IReadOnlyEntityType entityType, in Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier storeObject);
static member IsSqlOutputClauseUsed : Microsoft.EntityFrameworkCore.Metadata.IReadOnlyEntityType * StoreObjectIdentifier -> bool
<Extension()>
Public Function IsSqlOutputClauseUsed (entityType As IReadOnlyEntityType, ByRef storeObject As StoreObjectIdentifier) As Boolean

매개 변수

entityType
IReadOnlyEntityType

엔터티 형식입니다.

storeObject
StoreObjectIdentifier

테이블과 유사한 저장소 개체의 식별자입니다.

반환

SQL OUTPUT 절을 사용하여 연결된 테이블에 변경 내용을 저장할지 여부를 나타내는 값입니다.

적용 대상