Search Results for

    Show / Hide Table of Contents

    Class PostgresMultirangeType

    Represents a PostgreSQL multirange data type.

    Inheritance
    object
    PostgresType
    PostgresMultirangeType
    Inherited Members
    PostgresType.OID
    PostgresType.Namespace
    PostgresType.Name
    PostgresType.FullName
    PostgresType.DisplayName
    PostgresType.InternalName
    PostgresType.Array
    PostgresType.Range
    PostgresType.ToString()
    Namespace: Npgsql.PostgresTypes
    Assembly: Npgsql.dll
    Syntax
    public class PostgresMultirangeType : PostgresType
    Remarks

    See https://www.postgresql.org/docs/current/static/rangetypes.html.

    Multirange types were introduced in PostgreSQL 14.

    Constructors

    | Improve this Doc View Source

    PostgresMultirangeType(string, string, uint, PostgresRangeType)

    Constructs a representation of a PostgreSQL range data type.

    Declaration
    protected PostgresMultirangeType(string ns, string name, uint oid, PostgresRangeType rangePostgresType)
    Parameters
    Type Name Description
    string ns
    string name
    uint oid
    PostgresRangeType rangePostgresType
    Remarks

    See https://www.postgresql.org/docs/current/static/rangetypes.html.

    Multirange types were introduced in PostgreSQL 14.

    Properties

    | Improve this Doc View Source

    Subrange

    The PostgreSQL data type of the range of this multirange.

    Declaration
    public PostgresRangeType Subrange { get; }
    Property Value
    Type Description
    PostgresRangeType
    Remarks

    See https://www.postgresql.org/docs/current/static/rangetypes.html.

    Multirange types were introduced in PostgreSQL 14.

    • Improve this Doc
    • View Source
    In This Article
    Back to top © Copyright 2023 The Npgsql Development Team