Created
May 10, 2018 22:08
-
-
Save ryansgot/b491f69f8de1ec33ed677d2937604f29 to your computer and use it in GitHub Desktop.
Example Forsure DB retrieval query
This file contains 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
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