ColdFusion 9.0 Resources |
EntitytoQueryDescriptionConverts the input entity object or the input array of entity objects to a query object. CategoryFunction SyntaxEntitytoQuery (orm_object) EntitytoQuery (orm_object_array) Parameterorm_object: Entity object that needs to be converted to a query object. orm_object_array: Array that needs to be converted to a query object. See AlsoExample<cfset artists = EntityLoad("Artist")> <cfset artistQuery = EntityToQuery(artists)> |