欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

ibatis使用in查询的几种XML写法

程序员文章站 2022-05-19 10:12:07
...

1.传入参数是数组 select id=Test resultClass=dto select * from UserInfo where userId in iterate open=( close=) conjunction=, #[]# /iterate /select 使用 string[] arrays = new string[] { 1, 2, 3 }; Reader.QueryForList?(Ibatisnet.dao.span styl

1.传入参数是数组

使用
 string[] arrays = new string[] { "1", "2", "3" }; 
 Reader.QueryForList>("Ibatisnet.dao.Test", strValue ); 

2.使用上面的数组还可以使用对象中数组方式,写法有点区别

3. in 后面的数据,使用string传入 ,但是记住如果是:请使用$ $,而不是# #