You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The query cannot utilize an index (and would not on an SQL db either) - a full table scan will be performed. However, if you want like tom% (prefix search), indexes can be utilized on an ordinary SQL db, and in Dexie, that would be
Full Text Search indexes are another story and can be used to fuzzy search as well. Possible with dexie but not out of the box. Need to store search words in a multiEntry index. See samples on docs page for that.
Like sql:
select*from table where name like %tom%
The text was updated successfully, but these errors were encountered: