EntityState 열거형
Indicates the state of an entity as tracked by the OrganizationServiceContext and indicates to the server the operation that should be performed for a related entity.
네임스페이스: Microsoft.Xrm.Sdk
어셈블리: Microsoft.Xrm.Sdk(Microsoft.Xrm.Sdk.dll에 있음)
구문
‘선언
<DataContractAttribute(Name:="EntityState", Namespace:="https://schemas.microsoft.com/xrm/2011/Contracts")> _
Public Enumeration EntityState
[DataContractAttribute(Name="EntityState", Namespace="https://schemas.microsoft.com/xrm/2011/Contracts")]
public enum EntityState
구성원
구성원 이름 | 설명 |
---|---|
Changed | The entity was changed since the last call to SaveChanges. Value = 2. |
Created | The entity was created since the last call to SaveChanges. Value = 1. |
Unchanged | The entity is unchanged since the last call to SaveChanges. Value = 0. |
설명
The OrganizationServiceContext sets this value after the SaveChanges method is called and uses this value to track changes to entities. You can also set this value to Changed for a related entity to indicate to the service context that the related entity has been changed and that those changes need to be passed to the server. The service context sends changes to the server when the SaveChanges method is called.
플랫폼
Development Platforms
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Target Platforms
Windows Server 2008,Windows Server 2012,Windows 7
참고 항목
참조
Send comments about this topic to Microsoft.
© 2015 Microsoft. All rights reserved.