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
Currently, there is no way to fetch data from the database without writing SQL. Therefore we want to have a way to query more easily.
An idea for the api would be this:
let products = connection.select::<Product>().limit(10).orderAsc().await?
For complex query's, using SQL will be the preferred option, since a query builder can not provide all functions.
The text was updated successfully, but these errors were encountered:
Currently, there is no way to fetch data from the database without writing SQL. Therefore we want to have a way to query more easily.
An idea for the api would be this:
For complex query's, using SQL will be the preferred option, since a query builder can not provide all functions.
The text was updated successfully, but these errors were encountered: