public virtual void AddRange(UpdateTermCollection items) { foreach (UpdateTerm term in items) { base.List.Add(term); } }
private static void AddUpdateTerm(UpdateTermCollection terms, UpdateTerm ut) { if (terms.Contains(ut.FieldName)) { terms[ut.FieldName] = ut; } else { terms.Add(ut); } }
public InsertQuery(string tableName) { this.terms = new UpdateTermCollection(); this.tableName = tableName; }
public UpdateTermCollection(UpdateTermCollection items) { this.AddRange(items); }
public Enumerator(UpdateTermCollection collection) { this.wrapped = collection.GetEnumerator(); }
protected virtual void UpdateTerms(StringBuilder builder, UpdateTermCollection terms) { foreach (SkyMap.Net.SqlOM.UpdateTerm term in terms) { if (terms[0] != term) { this.Coma(builder); } this.UpdateTerm(builder, term); } }
public UpdateQuery(string tableName) { this.terms = new UpdateTermCollection(); this.whereClause = new SkyMap.Net.SqlOM.WhereClause(WhereClauseRelationship.And); this.tableName = tableName; }