Search Results for

    Show / Hide Table of Contents

    Class PostgresCompositeType

    Represents a PostgreSQL composite data type, which can hold multiple fields of varying types in a single column.

    Inheritance
    Object
    PostgresType
    PostgresCompositeType
    Inherited Members
    PostgresType.OID
    PostgresType.Namespace
    PostgresType.Name
    PostgresType.FullName
    PostgresType.DisplayName
    PostgresType.InternalName
    PostgresType.Array
    PostgresType.Range
    PostgresType.ToString()
    Object.Equals(Object)
    Object.Equals(Object, Object)
    Object.GetHashCode()
    Object.GetType()
    Object.MemberwiseClone()
    Object.ReferenceEquals(Object, Object)
    Namespace: Npgsql.PostgresTypes
    Assembly: Npgsql.dll
    Syntax
    public class PostgresCompositeType : PostgresType
    Remarks

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

    Properties

    Fields

    Holds the name and types for all fields.

    Declaration
    public IReadOnlyList<PostgresCompositeType.Field> Fields { get; }
    Property Value
    Type Description
    IReadOnlyList<PostgresCompositeType.Field>
    In This Article
    Back to top © Copyright 2022 The Npgsql Development Team