我创建了一个方法,它接收未指定数量的字典参数并扫描所有这些参数的内容,但没有涵盖相同的内容,它在第一次或第二次 foreach 中给出错误,具体取决于我修复的内容。Consegundo'm 没有解决这个问题。我怎样才能使这项工作变得异常。
我得到了 params 字典,我想浏览每个字典的内容。
我在下面遵循的代码:
public String getQuerySelectInner(String TABELA, params Dictionary<String, String> dictionaries)
{
String sql = "SELECT ";
foreach (Object dictionary in dictionaries)
{
foreach (var word in dictionary)
{
sql += word.Key + ",";
}
}
sql = sql.Remove(sql.Length - 1);
sql += " from " + TABELA + " WHERE situacao = 'ATIVO' ";
return sql;
}