public Dictionary <string, object> NextInsertRecord() { var nextInsertRecord = new Dictionary <string, object>(); InsertValues.Add(nextInsertRecord); return(nextInsertRecord); }
public ISqlBuilder Insert(List <object> values) { Type = StatementType.Insert; values.ForEach(v => InsertValues.Add(StoreAndGetReference(v))); return(this); }