当前位置:Gxlcms > mysql > ibatis使用in查询的几种XML写法

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

时间:2021-07-01 10:21:17 帮助过:32人阅读

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传入 ,但是记住如果是:请使用$ $,而不是# #

人气教程排行