EntityLoadByPK

Description

Loads and returns an array of objects for the specified primary key. Use this function to avoid specifying the boolean parameter that you must specify with the EntityLoad() function.

Returns

object

Category

ORM functions

Function Syntax

entityLoadByPK( entityName ,id)

Parameters

Parameter

Description

entity name

Name of the entity to be loaded.

id

Primary key id

See Also

EntityLoad, EntityReload, EntityLoadByExample, EntityDelete, ColdFusion ORMchapter in Developing ColdFusion Applications

Example

<cfscript> 
    art = EntityLoadByPK("Art", 1); 
    writedump(art); 
</cfscript>