コード例 #1
0
ファイル: Table.cs プロジェクト: georgeribeiro/FluentSql
 public ITable Update(object values)
 {
     _command = new Update(this, ((Select)_command).Wheres);
     _command.Values(values);
     return this;
 }
コード例 #2
0
ファイル: Table.cs プロジェクト: georgeribeiro/FluentSql
 public ITable Insert(object values)
 {
     _command = new Insert(this);
     _command.Values(values);
     return this;
 }