public InsertIntoTableAdvanced InsertInto(Table table) { var stm = new InsertStatement(this); var clause = new InsertIntoTableAdvanced(stm, table); stm.FirstFragment = clause; return(clause); }
public void InsertIntoTableAdvanced(SqlFragment parent, InsertIntoTableAdvanced insertIntoTableAdvanced) { this.Script.LineAppendLine(TSqlKeyword.INSERT_INTO); this.Script.AppendFragment(insertIntoTableAdvanced.Table, insertIntoTableAdvanced, this); }