Search Results for

    Show / Hide Table of Contents

    Class TypeMappingInfo

    Inheritance
    Object
    TypeMappingInfo
    Inherited Members
    Object.Equals(Object)
    Object.Equals(Object, Object)
    Object.GetHashCode()
    Object.GetType()
    Object.MemberwiseClone()
    Object.ReferenceEquals(Object, Object)
    Object.ToString()
    Namespace: Npgsql.Internal.TypeHandling
    Assembly: Npgsql.dll
    Syntax
    public class TypeMappingInfo

    Constructors

    TypeMappingInfo(Nullable<NpgsqlDbType>, String, Type)

    Declaration
    public TypeMappingInfo(NpgsqlDbType? npgsqlDbType, string dataTypeName, Type clrType)
    Parameters
    Type Name Description
    Nullable<NpgsqlDbType> npgsqlDbType
    String dataTypeName
    Type clrType

    TypeMappingInfo(Nullable<NpgsqlDbType>, String, Type[])

    Declaration
    public TypeMappingInfo(NpgsqlDbType? npgsqlDbType, string dataTypeName, params Type[] clrTypes)
    Parameters
    Type Name Description
    Nullable<NpgsqlDbType> npgsqlDbType
    String dataTypeName
    Type[] clrTypes

    Properties

    ClrTypes

    Declaration
    public Type[] ClrTypes { get; }
    Property Value
    Type Description
    Type[]

    DataTypeName

    Declaration
    public string DataTypeName { get; }
    Property Value
    Type Description
    String

    DbType

    Declaration
    public DbType DbType { get; }
    Property Value
    Type Description
    DbType

    NpgsqlDbType

    Declaration
    public NpgsqlDbType? NpgsqlDbType { get; }
    Property Value
    Type Description
    Nullable<NpgsqlDbType>
    In This Article
    Back to top © Copyright 2022 The Npgsql Development Team