Search Results for

    Show / Hide Table of Contents

    Class NpgsqlTsQueryBinOp

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

    Inheritance
    object
    NpgsqlTsQuery
    NpgsqlTsQueryBinOp
    NpgsqlTsQueryAnd
    NpgsqlTsQueryFollowedBy
    NpgsqlTsQueryOr
    Inherited Members
    NpgsqlTsQuery.Kind
    NpgsqlTsQuery.Write(StringBuilder)
    NpgsqlTsQuery.ToString()
    NpgsqlTsQuery.Parse(string)
    NpgsqlTsQuery.GetHashCode()
    NpgsqlTsQuery.Equals(object?)
    NpgsqlTsQuery.Equals(NpgsqlTsQuery)
    Namespace: NpgsqlTypes
    Assembly: Npgsql.dll
    Syntax
    public abstract class NpgsqlTsQueryBinOp : NpgsqlTsQuery

    Constructors

    | Improve this Doc View Source

    NpgsqlTsQueryBinOp(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

    | Improve this Doc View Source

    Left

    Left child

    Declaration
    public NpgsqlTsQuery Left { get; set; }
    Property Value
    Type Description
    NpgsqlTsQuery
    | Improve this Doc View Source

    Right

    Right child

    Declaration
    public NpgsqlTsQuery Right { get; set; }
    Property Value
    Type Description
    NpgsqlTsQuery
    • Improve this Doc
    • View Source
    In This Article
    Back to top © Copyright 2023 The Npgsql Development Team