当前位置:  开发笔记 > 编程语言 > 正文

PostgreSQL和C#数据类型

如何解决《PostgreSQL和C#数据类型》经验,为你挑选了1个好方法。



1> splattne..:

也许你可以通过Npgsql的文档找到一些东西, Npgsql是PostgreSQL的.NET数据提供程序的一个实现.

该文档的这一页实际上包含了您正在寻找的完整表格.搜索"4.当前Npgsql状态" - "支持的数据类型".有一个很好的表格,包含所有PostgreSQL数据类型及其在.NET中的通讯记录.

Postgresql  NpgsqlDbType System.DbType Enum .Net System Type
----------  ------------ ------------------ ----------------
int8        Bigint       Int64              Int64
bool        Boolean      Boolean            Boolean
bytea       Bytea        Binary             Byte[]
date        Date         Date               DateTime
float8      Double       Double             Double
int4        Integer      Int32              Int32
money       Money        Decimal            Decimal
numeric     Numeric      Decimal            Decimal
float4      Real         Single             Single
int2        Smallint     Int16              Int16
text        Text         String             String
time        Time         Time               DateTime
timetz      Time         Time               DateTime
timestamp   Timestamp    DateTime           DateTime
timestamptz TimestampTZ  DateTime           DateTime
interval    Interval     Object             TimeSpan
varchar     Varchar      String             String
inet        Inet         Object             IPAddress
bit         Bit          Boolean            Boolean
uuid        Uuid         Guid               Guid
array       Array        Object             Array

推荐阅读
赛亚兔备_393
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有