Share via


SqlServerEntityTypeExtensions.UseSqlOutputClause メソッド

定義

オーバーロード

UseSqlOutputClause(IMutableEntityType, Nullable<Boolean>)

テーブルへの変更を保存するときに SQL OUTPUT 句を使用するかどうかを示す値を設定します。 OUTPUT 句は、トリガーを含むテーブルなど、特定のSQL Server機能と互換性がありません。

UseSqlOutputClause(IConventionEntityType, Nullable<Boolean>, Boolean)

テーブルへの変更を保存するときに SQL OUTPUT 句を使用するかどうかを示す値を設定します。 OUTPUT 句は、トリガーを含むテーブルなど、特定のSQL Server機能と互換性がありません。

UseSqlOutputClause(IMutableEntityType, Nullable<Boolean>, StoreObjectIdentifier)

テーブルへの変更を保存するときに SQL OUTPUT 句を使用するかどうかを示す値を設定します。 OUTPUT 句は、トリガーを含むテーブルなど、特定のSQL Server機能と互換性がありません。

UseSqlOutputClause(IConventionEntityType, Nullable<Boolean>, StoreObjectIdentifier, Boolean)

テーブルへの変更を保存するときに SQL OUTPUT 句を使用するかどうかを示す値を設定します。 OUTPUT 句は、トリガーを含むテーブルなど、特定のSQL Server機能と互換性がありません。

UseSqlOutputClause(IMutableEntityType, Nullable<Boolean>)

テーブルへの変更を保存するときに SQL OUTPUT 句を使用するかどうかを示す値を設定します。 OUTPUT 句は、トリガーを含むテーブルなど、特定のSQL Server機能と互換性がありません。

public static void UseSqlOutputClause (this Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType entityType, bool? useSqlOutputClause);
static member UseSqlOutputClause : Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType * Nullable<bool> -> unit
<Extension()>
Public Sub UseSqlOutputClause (entityType As IMutableEntityType, useSqlOutputClause As Nullable(Of Boolean))

パラメーター

entityType
IMutableEntityType

エンティティの型。

useSqlOutputClause
Nullable<Boolean>

設定する値。

適用対象

UseSqlOutputClause(IConventionEntityType, Nullable<Boolean>, Boolean)

テーブルへの変更を保存するときに SQL OUTPUT 句を使用するかどうかを示す値を設定します。 OUTPUT 句は、トリガーを含むテーブルなど、特定のSQL Server機能と互換性がありません。

public static bool? UseSqlOutputClause (this Microsoft.EntityFrameworkCore.Metadata.IConventionEntityType entityType, bool? useSqlOutputClause, bool fromDataAnnotation = false);
static member UseSqlOutputClause : Microsoft.EntityFrameworkCore.Metadata.IConventionEntityType * Nullable<bool> * bool -> Nullable<bool>
<Extension()>
Public Function UseSqlOutputClause (entityType As IConventionEntityType, useSqlOutputClause As Nullable(Of Boolean), Optional fromDataAnnotation As Boolean = false) As Nullable(Of Boolean)

パラメーター

entityType
IConventionEntityType

エンティティの型。

useSqlOutputClause
Nullable<Boolean>

設定する値。

fromDataAnnotation
Boolean

構成がデータ注釈を使用して指定されたかどうかを示します。

戻り値

構成された値です。

適用対象

UseSqlOutputClause(IMutableEntityType, Nullable<Boolean>, StoreObjectIdentifier)

テーブルへの変更を保存するときに SQL OUTPUT 句を使用するかどうかを示す値を設定します。 OUTPUT 句は、トリガーを含むテーブルなど、特定のSQL Server機能と互換性がありません。

public static void UseSqlOutputClause (this Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType entityType, bool? useSqlOutputClause, in Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier storeObject);
static member UseSqlOutputClause : Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType * Nullable<bool> * StoreObjectIdentifier -> unit
<Extension()>
Public Sub UseSqlOutputClause (entityType As IMutableEntityType, useSqlOutputClause As Nullable(Of Boolean), ByRef storeObject As StoreObjectIdentifier)

パラメーター

entityType
IMutableEntityType

エンティティの型。

useSqlOutputClause
Nullable<Boolean>

設定する値。

storeObject
StoreObjectIdentifier

テーブルに似たストア オブジェクトの識別子。

適用対象

UseSqlOutputClause(IConventionEntityType, Nullable<Boolean>, StoreObjectIdentifier, Boolean)

テーブルへの変更を保存するときに SQL OUTPUT 句を使用するかどうかを示す値を設定します。 OUTPUT 句は、トリガーを含むテーブルなど、特定のSQL Server機能と互換性がありません。

public static bool? UseSqlOutputClause (this Microsoft.EntityFrameworkCore.Metadata.IConventionEntityType entityType, bool? useSqlOutputClause, in Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier storeObject, bool fromDataAnnotation = false);
static member UseSqlOutputClause : Microsoft.EntityFrameworkCore.Metadata.IConventionEntityType * Nullable<bool> * StoreObjectIdentifier * bool -> Nullable<bool>
<Extension()>
Public Function UseSqlOutputClause (entityType As IConventionEntityType, useSqlOutputClause As Nullable(Of Boolean), ByRef storeObject As StoreObjectIdentifier, Optional fromDataAnnotation As Boolean = false) As Nullable(Of Boolean)

パラメーター

entityType
IConventionEntityType

エンティティの型。

useSqlOutputClause
Nullable<Boolean>

設定する値。

storeObject
StoreObjectIdentifier

テーブルに似たストア オブジェクトの識別子。

fromDataAnnotation
Boolean

構成がデータ注釈を使用して指定されたかどうかを示します。

戻り値

構成された値です。

適用対象