Share via


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 句を使用するかどうかを示す値。

適用対象