public void AddRange(WhereTermCollection val)
 {
     for (int i = 0; i < val.Count; i++)
     {
         this.Add(val[i]);
     }
 }
Example #2
0
 public WhereClause(WhereClauseRelationship relationship)
 {
     this.relationship = WhereClauseRelationship.And;
     this.whereTerms = new WhereTermCollection();
     this.clauses = new WhereClauseCollection();
     this.relationship = relationship;
 }
 public WhereTermCollection(WhereTermCollection val)
 {
     this.AddRange(val);
 }
 public WhereClauseEnumerator(WhereTermCollection mappings)
 {
     this.temp = mappings;
     this.baseEnumerator = this.temp.GetEnumerator();
 }
Example #5
0
 internal WhereClause()
 {
     this.relationship = WhereClauseRelationship.And;
     this.whereTerms = new WhereTermCollection();
     this.clauses = new WhereClauseCollection();
 }