Skip to content

Instantly share code, notes, and snippets.

@bittersweetryan
Created March 29, 2012 19:11
Show Gist options
  • Select an option

  • Save bittersweetryan/2242303 to your computer and use it in GitHub Desktop.

Select an option

Save bittersweetryan/2242303 to your computer and use it in GitHub Desktop.
Blog Post
<cfscript>
//returns all active, non-delted people
list();
//returns only active, non-deleted people
list({active = false});
//returns only inacvie, delted people
list({active = false, deleted = true});
//returns only active, non-deleted peple named "homer"
list({firstName = "Homer"});
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment