コード例 #1
0
 public DeleteQuery(string tableName)
 {
     this.whereClause = new SkyMap.Net.SqlOM.WhereClause(WhereClauseRelationship.And);
     this.tableName = tableName;
 }
コード例 #2
0
 public UpdateQuery(string tableName)
 {
     this.terms = new UpdateTermCollection();
     this.whereClause = new SkyMap.Net.SqlOM.WhereClause(WhereClauseRelationship.And);
     this.tableName = tableName;
 }