X Tutup
using JetBrains.Annotations; namespace Npgsql.PostgresTypes { /// /// Represents a PostgreSQL range data type. /// /// /// See https://www.postgresql.org/docs/current/static/rangetypes.html. /// public class PostgresRangeType : PostgresType { /// /// The PostgreSQL data type of the subtype of this range. /// [PublicAPI] public PostgresType Subtype { get; } /// /// Constructs a representation of a PostgreSQL range data type. /// protected internal PostgresRangeType(string ns, string name, uint oid, PostgresType subtypePostgresType) : base(ns, name, oid) { Subtype = subtypePostgresType; Subtype.Range = this; } } }
X Tutup