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.ToString()
    NpgsqlTsQuery.Parse(String)
    Object.Equals(Object)
    Object.Equals(Object, Object)
    Object.GetHashCode()
    Object.GetType()
    Object.MemberwiseClone()
    Object.ReferenceEquals(Object, Object)
    Namespace: NpgsqlTypes
    Assembly: Npgsql.dll
    Syntax
    public abstract class NpgsqlTsQueryBinOp : NpgsqlTsQuery

    Constructors

    | Improve this Doc

    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

    | Improve this Doc

    Left

    Left child

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

    Right

    Right child

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