Search Results for

    Show / Hide Table of Contents

    Class PostgresRangeType

    Represents a PostgreSQL range data type.

    Inheritance
    object
    PostgresType
    PostgresRangeType
    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 PostgresRangeType : PostgresType
    Remarks

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

    Constructors

    | Improve this Doc View Source

    PostgresRangeType(string, string, uint, PostgresType)

    Constructs a representation of a PostgreSQL range data type.

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

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

    Properties

    | Improve this Doc View Source

    Multirange

    The PostgreSQL data type of the multirange of this range.

    Declaration
    public PostgresMultirangeType? Multirange { get; }
    Property Value
    Type Description
    PostgresMultirangeType
    Remarks

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

    | Improve this Doc View Source

    Subtype

    The PostgreSQL data type of the subtype of this range.

    Declaration
    public PostgresType Subtype { get; }
    Property Value
    Type Description
    PostgresType
    Remarks

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

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