コード例 #1
0
		/// <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);
		}
コード例 #2
0
		/// <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);
		}