I want to search some data stored in IndexedDb
using dexie
. I looked the doc. for anything like LIKE
in sql for dexie
. is there any function for this purpose ?
Asked
Active
Viewed 3,809 times
3

user3486470
- 296
- 1
- 11

ajith
- 41
- 2
- 8
-
`startsWith(key: string): Collection;` something like the function I wanted – ajith Jul 03 '16 at 12:31
1 Answers
3
There's an answer for this question in a github issue: https://github.com/dfahlander/Dexie.js/issues/146

David Fahlander
- 5,058
- 1
- 20
- 19
-
1And this answer as well. Maybe more straight forward: https://github.com/dfahlander/Dexie.js/issues/267 – David Fahlander Jul 03 '16 at 14:12