ORMExecuteQuery
Parameters
ORMExecuteQuery( hql: "FROM autos WHERE make = ?", params: [ 'Ford' ] );
ORMExecuteQuery( hql: "FROM autos WHERE make = :make", params: { make: 'Ford' } );
Options
Method Signature
Arguments
Argument
Type
Required
Description
Default
Examples
Simple HQL Query Execution
Passing parameters
Related
Last updated
Was this helpful?