导致赋值的时候出错

时间:2021-12-20 01:06:40

比来事情中,,遇到了一个问题,最后发明是在使用string.Format的时候,由于盘问条件太多,导致赋值的时候堕落。

string sqlOne = string.Format(@" select * from MD_Person where Code=‘{0}‘ AND Role=N‘{1}‘ AND Type=N‘{2}‘", code, role, type);

这种写法,当盘问条件出格多的时候,容易堕落。

最后将string.Format都是用$来替换

string sqTwo = $"select * from MD_Person where Code=‘{code}‘ AND Role=‘{role}‘ AND Type=‘{type}‘";

标签:

原文地点:https://www.cnblogs.com/ahao214/p/12785372.html