EntityDAC

TCustomEntityContext.CreateEntity Method

The method is designed for creating a new entity instance.

Class

TCustomEntityContext

Syntax

function CreateEntity(Key: TPrimaryKey): TMappedEntity; overload;

Parameters
Key
The primary key for the entity to be created.

Remarks

The method creates a new entity instance of the specified meta-type with the specified primary key. The entity instance created by this method is not attached to the data context (is not placed to the object cache), therefore it won't be automatically destroyed on application shutdown. It should be destroyed manually. It is expedient to use the method in case when the primary key value of an entity is unknown at the moment of its creation (or there is no confidence in its uniqueness), in order to avoid an exception on an attempt to place an object to the cache.

To attach an entity instance to the data context and place it to the object cache (in order to perform further modification operations: TCustomEntityContext.Delete, TCustomEntityContext.Save, TCustomEntityContext.Cancel), the TCustomEntityContext.Attach method should be used. To create an entity instance with simultaneous attaching it to the data context, the TCustomEntityContext.CreateAttachedEntity method should be used.

Example

var
  PK: TPrimaryKey;
  EmpEntity: TEntity;
begin
  PK := TPrimaryKey.Create(Context['Emp']);
  PK.Values[0].AsInteger := 1;
  EmpEntity := Context.CreateEntity(PK);
  // ...
end; 

See Also

© 1997-2024 Devart. All Rights Reserved. Request Support DAC Forum Provide Feedback