ObjectStateEntry Class

Definition

Represents either an entity, entity stub or relationship.

public ref class ObjectStateEntry abstract : System::Data::Objects::DataClasses::IEntityChangeTracker
public abstract class ObjectStateEntry : System.Data.Objects.DataClasses.IEntityChangeTracker
type ObjectStateEntry = class
    interface IEntityChangeTracker
Public MustInherit Class ObjectStateEntry
Implements IEntityChangeTracker
Inheritance
ObjectStateEntry
Implements

Properties

CurrentValues

Gets the current property values of the object or relationship associated with this ObjectStateEntry.

Entity

Gets the entity object.

EntityKey

Gets or sets the entity key.

EntitySet

Gets the EntitySetBase for the object or relationship.

IsRelationship

Gets a value that indicates whether the ObjectStateEntry represents a relationship.

ObjectStateManager

Gets the ObjectStateManager for the ObjectStateEntry.

OriginalValues

Gets the read-only version of original values of the object or relationship.

RelationshipManager

Gets the RelationshipManager instance for the object represented by entry.

State

Gets or sets the state of the ObjectStateEntry.

Methods

AcceptChanges()

Accepts the current values as original values.

ApplyCurrentValues(Object)

Sets the current values of the entry to match the property values of a supplied object.

ApplyOriginalValues(Object)

Sets the original values of the entry to match the property values of a supplied object.

ChangeState(EntityState)

Changes state of the entry to the specified EntityState value.

Delete()

Marks an entity as deleted.

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetModifiedProperties()

Returns the names of an object's properties that have changed since the last time SaveChanges() was called.

GetType()

Gets the Type of the current instance.

(Inherited from Object)
GetUpdatableOriginalValues()

Gets the updatable version of original values of the object associated with this ObjectStateEntry.

IsPropertyChanged(String)

Uses DetectChanges to determine whether or not the current value of the property with the given name is different from its original value. Note that this may be different from the property being marked as modified since a property which has not changed can still be marked as modified.

MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
RejectPropertyChanges(String)

Rejects any changes made to the property with the given name since the property was last loaded, attached, saved, or changes were accepted. The original value of the property is stored and the property will no longer be marked as modified.

SetModified()

Sets the state of the object or relationship to modify.

SetModifiedProperty(String)

Marks the specified property as modified.

ToString()

Returns a string that represents the current object.

(Inherited from Object)

Explicit Interface Implementations

IEntityChangeTracker.EntityComplexMemberChanged(String, Object, String)

Notifies the state manager that a complex property has changed.

IEntityChangeTracker.EntityComplexMemberChanging(String, Object, String)

Notifies the state manager that a complex property has a pending change.

IEntityChangeTracker.EntityMemberChanged(String)

Notifies the state manager that a property has changed.

IEntityChangeTracker.EntityMemberChanging(String)

Notifies the state manager that a property has a pending change.

IEntityChangeTracker.EntityState

Gets the EntityState for the ObjectStateEntry.

Applies to