コード例 #1
0
ファイル: QueryProperty.cs プロジェクト: nenadjesic/xilion
 /// <summary>
 /// Sets property is list.
 /// </summary>
 /// <param name="listOperator">Define list internal logic operator. Default is Or</param>
 /// <returns><see cref="QueryProperty"/></returns>
 public QueryProperty SetList(LogicOperator listOperator = null)
 {
     IsList       = true;
     ListOperator = listOperator ?? _listOperator;
     return(this);
 }
コード例 #2
0
ファイル: QueryProperty.cs プロジェクト: nenadjesic/xilion
 /// <summary>
 /// Sets property logic operator.
 /// Default is And
 /// </summary>
 /// <param name="logicOperator"></param>
 /// <returns></returns>
 public QueryProperty SetLogicOperator(LogicOperator logicOperator)
 {
     LogicOperator = logicOperator;
     return(this);
 }