ObjectContext.ApplyPropertyChanges 方法
[本页针对的是实体框架版本 6。最新版本以“实体框架”NuGet 包的形式提供。有关实体框架的更多信息,请参见 msdn.com/data/ef。]
注意:此 API 现在已过时。
将已分离对象的属性更改应用于已附加到对象上下文的对象。
命名空间: System.Data.Entity.Core.Objects
程序集: EntityFramework(在 EntityFramework.dll 中)
语法
声明
<ObsoleteAttribute("Use ApplyCurrentValues instead")> _
<BrowsableAttribute(False)> _
<EditorBrowsableAttribute(EditorBrowsableState.Never)> _
Public Overridable Sub ApplyPropertyChanges ( _
entitySetName As String, _
changed As Object _
)
用法
Dim instance As ObjectContext
Dim entitySetName As String
Dim changed As Object
instance.ApplyPropertyChanges(entitySetName, _
changed)
[ObsoleteAttribute("Use ApplyCurrentValues instead")]
[BrowsableAttribute(false)]
[EditorBrowsableAttribute(EditorBrowsableState.Never)]
public virtual void ApplyPropertyChanges(
string entitySetName,
Object changed
)
[ObsoleteAttribute(L"Use ApplyCurrentValues instead")]
[BrowsableAttribute(false)]
[EditorBrowsableAttribute(EditorBrowsableState::Never)]
public:
virtual void ApplyPropertyChanges(
String^ entitySetName,
Object^ changed
)
[<ObsoleteAttribute("Use ApplyCurrentValues instead")>]
[<BrowsableAttribute(false)>]
[<EditorBrowsableAttribute(EditorBrowsableState.Never)>]
abstract ApplyPropertyChanges :
entitySetName:string *
changed:Object -> unit
[<ObsoleteAttribute("Use ApplyCurrentValues instead")>]
[<BrowsableAttribute(false)>]
[<EditorBrowsableAttribute(EditorBrowsableState.Never)>]
override ApplyPropertyChanges :
entitySetName:string *
changed:Object -> unit
public function ApplyPropertyChanges(
entitySetName : String,
changed : Object
)
参数
- entitySetName
类型:System.String
对象所属实体集的名称。
- changed
类型:System.Object
其属性更新将应用于原始对象的已分离对象。
异常
例外 | 条件 |
---|---|
ArgumentNullException | 当 entitySetName 为 null 或空字符串时,或当 changed 为 null 时。 |
InvalidOperationException | 当来自 entitySetName 的 EntitySet 与对象 EntityKey 的 EntitySet 不匹配时,或实体未处于 Modified 或 Unchanged 状态时,或原始对象未附加到上下文时。 |
ArgumentException | 当 changed 对象的类型与原始对象的类型不同时。 |