Ejemplo n.º 1
0
 private static string NamesAndTypes(Dictionary <string, Type> fields)
 {
     return(CommaSeparatedString(fields,
                                 (string key, Type value) => $"{key} {SQLType.Get(value)}"));
 }
Ejemplo n.º 2
0
 private static string NamesEqValues(Dictionary <string, object> fields)
 {
     return(CommaSeparatedString(fields,
                                 (string key, object value) => $"{key} = {SQLType.StringLiteral(value)}"));
 }
Ejemplo n.º 3
0
 public static string DataValues(Dictionary <string, object> fields)
 {
     return(CommaSeparatedString(fields,
                                 (string key, object value) => SQLType.StringLiteral(value)));
 }