Esempio n. 1
0
 public void AddWhere(string name, object value)
 {
     _whereClause.Add(new KeyValuePair <string, object>(SQLUtil.AddBackQuotes(name), value));
 }
Esempio n. 2
0
 public void AddValue(string name, object value)
 {
     _values.Add(new KeyValuePair <string, object>(SQLUtil.AddBackQuotes(name), value));
 }