Merge branch 'master' of https://github.com/2881099/FreeSql.wiki

2881099
2021-02-02 13:09:55 +08:00
2 changed files with 1 additions and 0 deletions

BIN
.vs/slnx.sqlite Normal file

Binary file not shown.

1
ADO.md

@@ -32,6 +32,7 @@ Ado 下面所有参数 object parms 都可以接受匿名对象,或者字典
IN 参数化查询:
> 当前仅支持Array和IList类型绑定
```c#
var ids = new int[] { 1,2,3 };
List<T> list = fsql.Ado.Query<T>("select * from t1 where id in @ids", new { ids = ids });