Update ADO

Eternity
2021-02-02 03:58:55 +08:00
parent b2e2a4ce07
commit c291072e6b
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 });