ColdFusion 9.0 Resources |
ORMEvictCollectionDescriptionThis method is used to evict all the collection or association data for the given component 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. CategorySee AlsoORMEvictEntity, ORMEvictQueries, Evict content from secondary cache in Developing ColdFusion Applications Function Syntaxormevictcollection("<component_name>", "<collection_name>", [primarykey]) Parameters
ExampleTo evict all the association or collection data of collection arts belonging to the component CArtists: <cfset ORMEvictCollection("CArtists", "arts")> |