Пример #1
0
 public DeleteStatement Where(ICondition condition)
 {
     if (_Where == null)
     {
         _Where = new ConditionClause("WHERE");
     }
     _Where.And(condition);
     return(this);
 }
Пример #2
0
 public SelectStatement Having(ICondition condition)
 {
     if (_Having == null)
     {
         _Having = new ConditionClause("HAVING");
     }
     _Having.And(condition);
     return(this);
 }