ColdFusion 9.0 Resources |
EntityLoadByPKDescriptionLoads 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. Returnsobject CategoryFunction SyntaxentityLoadByPK( entityName ,id) Parameters
See AlsoEntityLoad, EntityReload, EntityLoadByExample, EntityDelete, ColdFusion ORMchapter in Developing ColdFusion Applications Example<cfscript> art = EntityLoadByPK("Art", 1); writedump(art); </cfscript> |