/// <summary> /// Create a new 'AND' condition group. /// </summary> /// <param name="phrase1">'WHERE' phrase1.</param> /// <param name="phrases">'WHERE' phrases.</param> public APSqlConditionAndPhrase(APSqlWherePhrase phrase1, params APSqlWherePhrase[] phrases) { _child = phrase1; _child.SetNext(phrases); }
/// <summary> /// Create a new 'AND' condition group. /// </summary> /// <param name="phrase1">'WHERE' phrase1.</param> /// <param name="phrase2">'WHERE' phrase2.</param> public APSqlConditionAndPhrase(APSqlWherePhrase phrase1, APSqlWherePhrase phrase2) { _child = phrase1; _child.SetNext(phrase2); }