Currently, I am utilizing the Dexie library for IndexedDb. As I delve into the API documentation, my focus is on finding a way to select events that fall within two specific dates. It appears that this can be achieved using the .between()
method in the following manner:
table.where(indexOrPrimKey).between(lowerBound, upperBound, includeLower, includeUpper)
Upon reviewing all the provided examples, it seems like this method is commonly used with numerical values. However, I am curious if anyone has attempted to use it with dates instead. If so, I would appreciate insight on whether there is a requirement for a specific date format to be utilized.