Skip to content

Commit

Permalink
Update Non-standard-parameter-conversions.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jacentino authored Dec 9, 2019
1 parent bd922f1 commit ed1d501
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/Non-standard-parameter-conversions.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
There are also built-in parameter conversions:

### Simple collection parameters
* `listParamBuilder` modifies sql statement by replacing one parameter with many parameters representing elements of the
`listParamBuilder` modifies sql statement by replacing one parameter with many parameters representing elements of the
list. E.g. the query:
```sql
select * from post where id in (@postIds)
Expand All @@ -18,8 +18,8 @@ There are also built-in parameter conversions:
createDefaultConfig createConnection
|> useCollectionParameters
```

* `listDirectParamBuilder` modifies sql statement by replacing parameter with list of comma-separated values. E.g.
### Inlining parameter values
`listDirectParamBuilder` modifies sql statement by replacing parameter with list of comma-separated values. E.g.
```sql
select * from post where id in (@postIds)
```
Expand Down

0 comments on commit ed1d501

Please sign in to comment.