c#代码生成器里,from col in cols select “@” + col是什么意思
string[] cols = GetColsWithoutId(dtCols);
string[] colParams = (from col in cols
select “@” + col).ToArray();
第二句话的后半部分看不懂
string[] cols = GetColsWithoutId(dtCols);
string[] colParams = (from col in cols
select “@” + col).ToArray();
第二句话的后半部分看不懂
解决方案
20