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
First of all I want to say, what an awesome library. I love being able to communicate with an SQLite database in a type-safe way.
So let's get to the point. In the docs you say you called the query method used for the WHERE clause in a query filter, because where was a reserved name. iIf you write the function like this:
First of all I want to say, what an awesome library. I love being able to communicate with an SQLite database in a type-safe way.
So let's get to the point. In the docs you say you called the query method used for the
WHERE
clause in a queryfilter
, becausewhere
was a reserved name. iIf you write the function like this:You can actually use it like:
users.where(id == 1)
.The text was updated successfully, but these errors were encountered: