oRMEvictCollection

Description

This method is used to evict all the collection or association data for the given entity name and collection name, from the secondary cache. If the primary key is specified, then, the collection or association data of the entity with the primary key is evicted.

Categories

Related

Syntax

ormevictcollection("<entity_name>", "<collection_name>", [primarykey])

Attributes

AttributeDescriptionRequiredDefault
collection nameName of the collection in the component
entity nameEntity name of the persistent CFC.
primary keyPrimary key of the collection or association data of the entity

Example

To evict all the association or collection data of collection arts belonging to the component CArtists:
<cfset ORMEvictCollection("CArtists", "arts")>