Show / Hide Table of Contents

Class NpgsqlTsQueryBinOp

Base class for TsQuery binary operators (& and |).

Inheritance
System.Object
NpgsqlTsQuery
NpgsqlTsQueryBinOp
NpgsqlTsQueryAnd
NpgsqlTsQueryFollowedBy
NpgsqlTsQueryOr
Inherited Members
NpgsqlTsQuery.Kind
NpgsqlTsQuery.ToString()
NpgsqlTsQuery.Parse(String)
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: NpgsqlTypes
Assembly: Npgsql.dll
Syntax
public abstract class NpgsqlTsQueryBinOp : NpgsqlTsQuery

Constructors

NpgsqlTsQueryBinOp(NpgsqlTsQuery.NodeKind, NpgsqlTsQuery, NpgsqlTsQuery)

Constructs a NpgsqlTsQueryBinOp.

Declaration
protected NpgsqlTsQueryBinOp(NpgsqlTsQuery.NodeKind kind, NpgsqlTsQuery left, NpgsqlTsQuery right)
Parameters
Type Name Description
NpgsqlTsQuery.NodeKind kind
NpgsqlTsQuery left
NpgsqlTsQuery right

Properties

Left

Left child

Declaration
public NpgsqlTsQuery Left { get; set; }
Property Value
Type Description
NpgsqlTsQuery

Right

Right child

Declaration
public NpgsqlTsQuery Right { get; set; }
Property Value
Type Description
NpgsqlTsQuery
In This Article
Back to top Generated by DocFX