@@ -320,7 +320,7 @@ To recap, the elements of the order / group array can be the following
...
@@ -320,7 +320,7 @@ To recap, the elements of the order / group array can be the following
Sometimes you might be expecting a massive dataset that you just want to display, without manipulation. For each row you select, Sequelize creates an instance with functions for update, delete, get associations etc. If you have thousands of rows, this might take some time. If you only need the raw data and don't want to update anything, you can do like this to get the raw data.
Sometimes you might be expecting a massive dataset that you just want to display, without manipulation. For each row you select, Sequelize creates an instance with functions for update, delete, get associations etc. If you have thousands of rows, this might take some time. If you only need the raw data and don't want to update anything, you can do like this to get the raw data.
```js
```js
// Are you expecting a masssive dataset from the DB,
// Are you expecting a massive dataset from the DB,
// and don't want to spend the time building DAOs for each entry?
// and don't want to spend the time building DAOs for each entry?
// You can pass an extra query option to get the raw data instead:
// You can pass an extra query option to get the raw data instead: