次の方法で共有


DbContextConfiguration.EnsureTransactionsForFunctionsAndCommands プロパティ

[このページは、Entity Framework 6 に関するページです。最新バージョンは、'Entity Framework' NuGet パッケージとして入手できます。Entity Framework の詳細については、msdn.com/data/ef を参照してください。]

SQL の関数とコマンドが常にトランザクション内で実行されるかどうかを決定する値を取得または設定します。

名前空間:  System.Data.Entity.Infrastructure
アセンブリ:  EntityFramework (EntityFramework.dll 内)

構文

'宣言
Public Property EnsureTransactionsForFunctionsAndCommands As Boolean 
    Get 
    Set
'使用
Dim instance As DbContextConfiguration 
Dim value As Boolean 

value = instance.EnsureTransactionsForFunctionsAndCommands

instance.EnsureTransactionsForFunctionsAndCommands = value
public bool EnsureTransactionsForFunctionsAndCommands { get; set; }
public:
property bool EnsureTransactionsForFunctionsAndCommands {
    bool get ();
    void set (bool value);
}
member EnsureTransactionsForFunctionsAndCommands : bool with get, set
function get EnsureTransactionsForFunctionsAndCommands () : boolean 
function set EnsureTransactionsForFunctionsAndCommands (value : boolean)

プロパティ値

型 : System.Boolean
既定のトランザクションの動作。

解説

このフラグは、ExecuteSqlCommand(String, Object[]) などのメソッドがトランザクションの外で実行された場合に、新しいトランザクションを開始するかどうかを決定します。 この決定により SaveChanges() の動作が変化しないことに注意してください。

参照

参照

DbContextConfiguration クラス

System.Data.Entity.Infrastructure 名前空間