Exemple #1
0
 /// <summary>
 /// Creates an or operator, with two given child nodes.
 /// </summary>
 /// <param name="left"></param>
 /// <param name="right"></param>
 public NpgsqlTsQueryOr(NpgsqlTsQuery left, NpgsqlTsQuery right)
 {
     Kind  = NodeKind.Or;
     Left  = left;
     Right = right;
 }
Exemple #2
0
 /// <summary>
 /// Creates a not operator, with a given child node.
 /// </summary>
 /// <param name="child"></param>
 public NpgsqlTsQueryNot(NpgsqlTsQuery child)
 {
     Kind  = NodeKind.Not;
     Child = child;
 }
Exemple #3
0
 /// <summary>
 /// Creates an and operator, with two given child nodes.
 /// </summary>
 /// <param name="left"></param>
 /// <param name="right"></param>
 public NpgsqlTsQueryAnd(NpgsqlTsQuery left, NpgsqlTsQuery right)
 {
     Kind  = NodeKind.And;
     Left  = left;
     Right = right;
 }
Exemple #4
0
 /// <summary>
 /// Creates an or operator, with two given child nodes.
 /// </summary>
 /// <param name="left"></param>
 /// <param name="right"></param>
 public NpgsqlTsQueryOr(NpgsqlTsQuery left, NpgsqlTsQuery right)
 {
     Kind = NodeKind.Or;
     Left = left;
     Right = right;
 }
Exemple #5
0
 /// <summary>
 /// Creates an and operator, with two given child nodes.
 /// </summary>
 /// <param name="left"></param>
 /// <param name="right"></param>
 public NpgsqlTsQueryAnd(NpgsqlTsQuery left, NpgsqlTsQuery right)
 {
     Kind = NodeKind.And;
     Left = left;
     Right = right;
 }
Exemple #6
0
 /// <summary>
 /// Creates a not operator, with a given child node.
 /// </summary>
 /// <param name="child"></param>
 public NpgsqlTsQueryNot(NpgsqlTsQuery child)
 {
     Kind = NodeKind.Not;
     Child = child;
 }
Exemple #7
0
 /// <summary>
 /// Creates an or operator, with two given child nodes.
 /// </summary>
 /// <param name="left"></param>
 /// <param name="right"></param>
 public NpgsqlTsQueryOr([CanBeNull] NpgsqlTsQuery left, [CanBeNull] NpgsqlTsQuery right)
 {
     Kind  = NodeKind.Or;
     Left  = left;
     Right = right;
 }
Exemple #8
0
 /// <summary>
 /// Creates a not operator, with a given child node.
 /// </summary>
 /// <param name="child"></param>
 public NpgsqlTsQueryNot([CanBeNull] NpgsqlTsQuery child)
 {
     Kind  = NodeKind.Not;
     Child = child;
 }