DbContextConfiguration.AutoDetectChangesEnabled プロパティ
[このページは、Entity Framework 6 に関するページです。最新バージョンは、'Entity Framework' NuGet パッケージとして入手できます。Entity Framework の詳細については、msdn.com/data/ef を参照してください。]
DetectChanges() メソッドを DbContext と関連クラスのメソッドによって自動的に呼び出すかどうかを示す値を取得または設定します。 既定値は true です。
名前空間: System.Data.Entity.Infrastructure
アセンブリ: EntityFramework (EntityFramework.dll 内)
構文
'宣言
Public Property AutoDetectChangesEnabled As Boolean
Get
Set
'使用
Dim instance As DbContextConfiguration
Dim value As Boolean
value = instance.AutoDetectChangesEnabled
instance.AutoDetectChangesEnabled = value
public bool AutoDetectChangesEnabled { get; set; }
public:
property bool AutoDetectChangesEnabled {
bool get ();
void set (bool value);
}
member AutoDetectChangesEnabled : bool with get, set
function get AutoDetectChangesEnabled () : boolean
function set AutoDetectChangesEnabled (value : boolean)
プロパティ値
型 : System.Boolean
自動的に呼び出す場合は true、それ以外は false。