Created
March 29, 2012 19:11
-
-
Save bittersweetryan/2242303 to your computer and use it in GitHub Desktop.
Blog Post
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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