Class PostgresArrayType
Represents a PostgreSQL array data type, which can hold several multiple values in a single column.
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Npgsql.PostgresTypes
Assembly: Npgsql.dll
Syntax
public class PostgresArrayType : PostgresType
Remarks
Constructors
PostgresArrayType(String, String, UInt32, PostgresType)
Constructs a representation of a PostgreSQL array data type.
Declaration
protected PostgresArrayType(string ns, string internalName, uint oid, PostgresType elementPostgresType)
Parameters
Type | Name | Description |
---|---|---|
System.String | ns | |
System.String | internalName | |
System.UInt32 | oid | |
PostgresType | elementPostgresType |
Properties
Element
The PostgreSQL data type of the element contained within this array.
Declaration
public PostgresType Element { get; }
Property Value
Type | Description |
---|---|
PostgresType |