Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ryansgot/b491f69f8de1ec33ed677d2937604f29 to your computer and use it in GitHub Desktop.
Save ryansgot/b491f69f8de1ec33ed677d2937604f29 to your computer and use it in GitHub Desktop.
Example Forsure DB retrieval query
Retriever r = ForSure.employeesTable()
.find().byNotDeleted()
.and().byFirstName("FSRyan")
.and().byLastName("Developer")
.then()
.get();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment