setPrimaryKeys()
Description
Alias for setPrimaryKey(). Use this for better readability when you're setting multiple properties as the primary key.
Function Syntax
setPrimaryKeys(property)
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
property |
string |
Yes | |
Property (or list of properties) to set as the primary key. |
Examples
<!--- In `models/Subscription.cfc`, define the primary key as composite of the columns `customerId` and `publicationId` --->
<cffunction name="init">
<cfset setPrimaryKeys("customerId,publicationId")>
</cffunction>
