EntityLoadByPK()

edit

Loads and returns an array of objects for given primary key.

EntityLoadByPK( name=string, id=any, unique=boolean );

Returns: any

Argument Description
name
string, required
edit

Name of the entity to be loaded.

id
any, required
edit

The primary key value of the entity that must be loaded

Unimplemented Argument(s)

Argument Description
unique
boolean, optional
edit

If unique is set to true, then the entity is returned. If you are sure that only one record exists that matches this filtercriteria, then you can specify unique=true, so that a single entity is returned instead of an array. If you set unique=true and multiple records are returned, then an exception occurs.

* unimplemented *

Examples

edit

There are currently no examples for this function.

See also