Search Results for

    Show / Hide Table of Contents

    Struct NpgsqlTid

    Represents a PostgreSQL tid value

    Implements
    IEquatable<><NpgsqlTid>
    Namespace: NpgsqlTypes
    Assembly: Npgsql.dll
    Syntax
    public readonly struct NpgsqlTid : IEquatable<NpgsqlTid>
    Remarks

    https://www.postgresql.org/docs/current/static/datatype-oid.html

    Constructors

    | Improve this Doc View Source

    NpgsqlTid(uint, ushort)

    Declaration
    public NpgsqlTid(uint blockNumber, ushort offsetNumber)
    Parameters
    Type Name Description
    uint blockNumber
    ushort offsetNumber
    Remarks

    https://www.postgresql.org/docs/current/static/datatype-oid.html

    Properties

    | Improve this Doc View Source

    BlockNumber

    Block number

    Declaration
    public uint BlockNumber { get; }
    Property Value
    Type Description
    uint
    Remarks

    https://www.postgresql.org/docs/current/static/datatype-oid.html

    | Improve this Doc View Source

    OffsetNumber

    Tuple index within block

    Declaration
    public ushort OffsetNumber { get; }
    Property Value
    Type Description
    ushort
    Remarks

    https://www.postgresql.org/docs/current/static/datatype-oid.html

    Methods

    | Improve this Doc View Source

    Equals(NpgsqlTid)

    Declaration
    public bool Equals(NpgsqlTid other)
    Parameters
    Type Name Description
    NpgsqlTid other
    Returns
    Type Description
    bool
    Remarks

    https://www.postgresql.org/docs/current/static/datatype-oid.html

    | Improve this Doc View Source

    Equals(object?)

    Declaration
    public override bool Equals(object? o)
    Parameters
    Type Name Description
    object? o
    Returns
    Type Description
    bool
    Remarks

    https://www.postgresql.org/docs/current/static/datatype-oid.html

    | Improve this Doc View Source

    GetHashCode()

    Declaration
    public override int GetHashCode()
    Returns
    Type Description
    int
    Remarks

    https://www.postgresql.org/docs/current/static/datatype-oid.html

    | Improve this Doc View Source

    ToString()

    Declaration
    public override string ToString()
    Returns
    Type Description
    string
    Remarks

    https://www.postgresql.org/docs/current/static/datatype-oid.html

    Operators

    | Improve this Doc View Source

    operator ==(NpgsqlTid, NpgsqlTid)

    Declaration
    public static bool operator ==(NpgsqlTid left, NpgsqlTid right)
    Parameters
    Type Name Description
    NpgsqlTid left
    NpgsqlTid right
    Returns
    Type Description
    bool
    Remarks

    https://www.postgresql.org/docs/current/static/datatype-oid.html

    | Improve this Doc View Source

    operator !=(NpgsqlTid, NpgsqlTid)

    Declaration
    public static bool operator !=(NpgsqlTid left, NpgsqlTid right)
    Parameters
    Type Name Description
    NpgsqlTid left
    NpgsqlTid right
    Returns
    Type Description
    bool
    Remarks

    https://www.postgresql.org/docs/current/static/datatype-oid.html

    Implements

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