Functions for Database Querying
Let's learn about the available query methods and the supported return types for database queries.
We'll cover the following...
Available methods
Check out the query opportunities in the following table:
Finder Method | Description |
| Query based on description |
| Query based on name and description |
| Query based on the item’s name and by a related distributor’s region |
| Query based on name, but only return the first ten entries |
| Query by name, but ignore the case of the text |
| Query by name and description, but ignoring the case of the text in ALL fields |
| Query by name, but order the results based on the description in ascending order (or use |
| Query based on releaseDate being after the date |
| Query based on availableUnits being greater than units |
| Query based on availableUnits being greater than or equal to units |
| Query based on releaseDate being before the date |
| Query based on availableUnits being less than units |
| Query based on availableUnits being less than or equal to units |
| Query based on availableUnits being between from and to |
| Query based on availableUnits being found in the supplied collection |
| Query based on availableUnits NOT being found in the supplied collection |
| Query based on name not being null |
| Query based on name being null |
| Query based on input being a regular expression |
| Query based on input being a regex, with a MongoDB |
| For a string input, query just like Like. For a collection, query testing membership in the collection |
| For a string input, query like NotLike. For a collection, query testing lack of membership in the collection |
| Query using pattern as a regular expression |
| Query by geospatial relation using MongoDB’s |
| Query by geospatial relation using MongoDB’s |
| Query by geospatial relation using MongoDB’s |
| Query by geospatial relation using MongoDB’s |
| Query by geospatial relation using MongoDB’s |
| Query by active being |
| Query by active being |
| Query by location having the same boolean value as the input |
Let’s take time to digest this table. It provides a plethora of query opportunities. As a bonus, all of these keywords can also be used for crafting deleteBy
methods!
Note: Many of these operators also work with ...