|
DescriptionLoads 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.
Function SyntaxentityLoadByPK( entityName ,id)
Parameters
Parameter
|
Description
|
entity name
|
Name of the entity to be loaded.
|
id
|
Primary key id
|
HistoryColdFusion
9: Added this function.
Example<cfscript>
art = EntityLoadByPK("Art", 1);
writedump(art);
</cfscript>
|
|
|