Search Results for

    Show / Hide Table of Contents

    Class NpgsqlTsQueryBinOp

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

    Inheritance
    Object
    NpgsqlTsQuery
    NpgsqlTsQueryBinOp
    NpgsqlTsQueryAnd
    NpgsqlTsQueryFollowedBy
    NpgsqlTsQueryOr
    Implements
    IEquatable<NpgsqlTsQuery>
    Inherited Members
    NpgsqlTsQuery.Kind
    NpgsqlTsQuery.Write(StringBuilder)
    NpgsqlTsQuery.ToString()
    NpgsqlTsQuery.Parse(String)
    NpgsqlTsQuery.GetHashCode()
    NpgsqlTsQuery.Equals(Object)
    NpgsqlTsQuery.Equals(NpgsqlTsQuery)
    Object.Equals(Object, Object)
    Object.GetType()
    Object.MemberwiseClone()
    Object.ReferenceEquals(Object, Object)
    Namespace: NpgsqlTypes
    Assembly: Npgsql.dll
    Syntax
    public abstract class NpgsqlTsQueryBinOp : NpgsqlTsQuery, IEquatable<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

    Implements

    System.IEquatable<T>
    In This Article
    Back to top © Copyright 2022 The Npgsql Development Team