在C#D层的查询语句或者数据库查询的时候会有这个错误,一般都是查询语句中出现了问题。

1.查看字段名,字段名有可能分开了

select * from Customer where user_  name = '阿三'

2.参数距离where太近,中间没有空格

select * from Customer whereuser_name = '阿三'