示例#1
0
        public Dictionary <string, object> NextInsertRecord()
        {
            var nextInsertRecord = new Dictionary <string, object>();

            InsertValues.Add(nextInsertRecord);
            return(nextInsertRecord);
        }
示例#2
0
 public ISqlBuilder Insert(List <object> values)
 {
     Type = StatementType.Insert;
     values.ForEach(v => InsertValues.Add(StoreAndGetReference(v)));
     return(this);
 }