Contents

newValuesForObject(with:with:)

Returns an incremental store node encapsulating the persistent external values of the object with a given object ID.

Declaration

func newValuesForObject(with objectID: NSManagedObjectID, with context: NSManagedObjectContext) throws -> NSIncrementalStoreNode

Parameters

  • objectID:

    The ID of the object for which values are requested.

  • context:

    The managed object context into which values will be returned.

Return Value

An incremental store node encapsulating the persistent external values of the object with object ID objectID, or nil if the corresponding object cannot be found.

Discussion

The returned node should include all attributes values and may include to-one relationship values as instances of NSManagedObjectID.

If an object with object ID objectID cannot be found, the method should return nil and—if error is not NULL—create and return an appropriate error object in error.

See Also

Manipulating Managed Objects