DbContextConfiguration.EnsureTransactionsForFunctionsAndCommands 属性
[本页针对的是实体框架版本 6。最新版本以“实体框架”NuGet 包的形式提供。有关实体框架的更多信息,请参见 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() 的行为。