我有一个 sql 查询
Select Itemcode from StocktransferlocationDetails
where Projectname='" + projectname_stockout + "' and
Stocktransferlocation !='" + location_stockout + "' and Status='Open'
在 C# 中使用时无法正常工作,但在 SQl 中正确工作我在 sql 中使用了以下查询
Select Itemcode from StocktransferlocationDetails
where Projectname='iupl' and Stocktransferlocation !='Chennai-Bangalore'
and Status='Open'
这个怎么做