Search Results for

    Show / Hide Table of Contents

    Class PostgresArrayType

    Represents a PostgreSQL array data type, which can hold several multiple values in a single column.

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

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

    Constructors

    | Improve this Doc View Source

    PostgresArrayType(string, string, uint, PostgresType)

    Constructs a representation of a PostgreSQL array data type.

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

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

    Properties

    | Improve this Doc View Source

    Element

    The PostgreSQL data type of the element contained within this array.

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

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

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