ObjectContext.ApplyCurrentValues<TEntity> 方法
[此頁面專屬於 Entity Framework 第 6 版。最新版本可從 'Entity Framework' NuGet 套件取得。如需 Entity Framework 的詳細資訊,請參閱 msdn.com/data/ef。]
將純量值從提供的物件複製到 ObjectContext 中具有相同索引鍵的物件。
命名空間: System.Data.Entity.Core.Objects
組件: EntityFramework (在 EntityFramework.dll 中)
語法
'宣告
Public Overridable Function ApplyCurrentValues(Of TEntity As Class) ( _
entitySetName As String, _
currentEntity As TEntity _
) As TEntity
'用途
Dim instance As ObjectContext
Dim entitySetName As String
Dim currentEntity As TEntity
Dim returnValue As TEntity
returnValue = instance.ApplyCurrentValues(entitySetName, _
currentEntity)
public virtual TEntity ApplyCurrentValues<TEntity>(
string entitySetName,
TEntity currentEntity
)
where TEntity : class
public:
generic<typename TEntity>
where TEntity : ref class
virtual TEntity ApplyCurrentValues(
String^ entitySetName,
TEntity currentEntity
)
abstract ApplyCurrentValues :
entitySetName:string *
currentEntity:'TEntity -> 'TEntity when 'TEntity : not struct
override ApplyCurrentValues :
entitySetName:string *
currentEntity:'TEntity -> 'TEntity when 'TEntity : not struct
JScript does not support generic types and methods.
類型參數
- TEntity
物件的實體類型。
參數
- entitySetName
類型:System.String
此物件所屬之實體集的名稱。
- currentEntity
類型:TEntity
具有要套用至原始物件之屬性更新的已中斷連結物件。 currentEntity 的實體索引鍵必須符合 ObjectContext 中項目的 EntityKey 屬性。
傳回值
類型:TEntity
更新的物件。
例外狀況
例外狀況 | 條件 |
---|---|
ArgumentNullException | entitySetName 或 current 為 null。 |
InvalidOperationException | entitySetName 的 EntitySet 不符合物件 EntityKey 的 EntitySet,或者物件不在 ObjectStateManager 中,或者物件的狀態為 Detached,或者給定物件的實體索引鍵無效。 |
ArgumentException | entitySetName 為空字串。 |