ObjectContext.SaveChanges 方法 (Boolean)
[本页针对的是实体框架版本 6。最新版本以“实体框架”NuGet 包的形式提供。有关实体框架的更多信息,请参见 msdn.com/data/ef。]
注意:此 API 现在已过时。
命名空间: System.Data.Entity.Core.Objects
程序集: EntityFramework(在 EntityFramework.dll 中)
语法
声明
<ObsoleteAttribute("Use SaveChanges(SaveOptions options) instead.")> _
<BrowsableAttribute(False)> _
<EditorBrowsableAttribute(EditorBrowsableState.Never)> _
Public Overridable Function SaveChanges ( _
acceptChangesDuringSave As Boolean _
) As Integer
用法
Dim instance As ObjectContext
Dim acceptChangesDuringSave As Boolean
Dim returnValue As Integer
returnValue = instance.SaveChanges(acceptChangesDuringSave)
[ObsoleteAttribute("Use SaveChanges(SaveOptions options) instead.")]
[BrowsableAttribute(false)]
[EditorBrowsableAttribute(EditorBrowsableState.Never)]
public virtual int SaveChanges(
bool acceptChangesDuringSave
)
[ObsoleteAttribute(L"Use SaveChanges(SaveOptions options) instead.")]
[BrowsableAttribute(false)]
[EditorBrowsableAttribute(EditorBrowsableState::Never)]
public:
virtual int SaveChanges(
bool acceptChangesDuringSave
)
[<ObsoleteAttribute("Use SaveChanges(SaveOptions options) instead.")>]
[<BrowsableAttribute(false)>]
[<EditorBrowsableAttribute(EditorBrowsableState.Never)>]
abstract SaveChanges :
acceptChangesDuringSave:bool -> int
[<ObsoleteAttribute("Use SaveChanges(SaveOptions options) instead.")>]
[<BrowsableAttribute(false)>]
[<EditorBrowsableAttribute(EditorBrowsableState.Never)>]
override SaveChanges :
acceptChangesDuringSave:bool -> int
public function SaveChanges(
acceptChangesDuringSave : boolean
) : int
参数
- acceptChangesDuringSave
类型:System.Boolean
客户端事务支持需要此参数。 如果为 true,则所有对象上的更改跟踪都会在 SaveChanges(Boolean) 完成后重置。 如果为 false,则必须在 SaveChanges(Boolean) 之后调用 AcceptAllChanges() 方法。
返回值
类型:System.Int32
在调用 SaveChanges() 时处于 Added、Modified 或 Deleted 状态的对象数。
异常
例外 | 条件 |
---|---|
OptimisticConcurrencyException | 保存更改时发生了开放式并发冲突。 |