mirror of
https://github.com/typeorm/typeorm.git
synced 2025-12-08 21:26:23 +00:00
docs: Update select-query-builder.md (#10763)
Crystal Maiden, not Cristal.
This commit is contained in:
parent
08cea16ac5
commit
0d082463ce
@ -344,13 +344,13 @@ You can also supply an array of values, and have them transformed into a list of
|
||||
statement, by using the special expansion syntax:
|
||||
|
||||
```typescript
|
||||
.where("user.name IN (:...names)", { names: [ "Timber", "Cristal", "Lina" ] })
|
||||
.where("user.name IN (:...names)", { names: [ "Timber", "Crystal", "Lina" ] })
|
||||
```
|
||||
|
||||
Which becomes:
|
||||
|
||||
```sql
|
||||
WHERE user.name IN ('Timber', 'Cristal', 'Lina')
|
||||
WHERE user.name IN ('Timber', 'Crystal', 'Lina')
|
||||
```
|
||||
|
||||
## Adding `WHERE` expression
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user