|
92 | 92 | <DbType Name="timestamp" To="DateTime" /> |
93 | 93 | </Database> |
94 | 94 | <Database DbProvider="PostgreSql" Language="CSharp"> |
95 | | - <DbType Name="image" To="byte[]"/> |
96 | 95 | <DbType Name="bool" To="bool"/> |
97 | | - <DbType Name="json" To="string"/> |
98 | | - <DbType Name="uuid" To="Guid"/> |
99 | | - <DbType Name="text" To="string"/> |
100 | | - <DbType Name="ntext" To="string"/> |
101 | | - <DbType Name="varchar" To="string"/> |
102 | | - <DbType Name="nvarchar" To="string" /> |
103 | | - <DbType Name="varchar2" To="string" /> |
104 | | - <DbType Name="nvarchar2" To="string" /> |
105 | | - <DbType Name="xml" To="string"/> |
106 | | - <DbType Name="uniqueidentifier" To="Guid"/> |
107 | | - <DbType Name="date" To="DateTime"/> |
108 | | - <DbType Name="smalldatetime" To="DateTime"/> |
109 | | - <DbType Name="datetime" To="DateTime" /> |
110 | | - <DbType Name="datetime2" To="DateTime"/> |
111 | | - <DbType Name="time" To="TimeSpan"/> |
112 | | - <DbType Name="datetimeoffset" To="DateTimeOffset"/> |
113 | | - <DbType Name="tinyint" To="byte"/> |
114 | | - <DbType Name="smallint" To="short"/> |
115 | | - <DbType Name="int" To="int"/> |
116 | 96 | <DbType Name="int2" To="short"/> |
117 | 97 | <DbType Name="int4" To="int"/> |
118 | 98 | <DbType Name="int8" To="long"/> |
119 | | - <DbType Name="bigint" To="long"/> |
120 | | - <DbType Name="bit" To="bool" /> |
121 | | - <DbType Name="char" To="string" /> |
122 | | - <DbType Name="nchar" To="string" /> |
123 | | - <DbType Name="uniqueide" To="Guid" /> |
124 | | - <DbType Name="numeric" To="decimal" /> |
125 | | - <DbType Name="integer" To="int" /> |
126 | | - <DbType Name="money" To="decimal" /> |
127 | | - <DbType Name="real" To="decimal" /> |
128 | | - <DbType Name="blob" To="byte[]" /> |
129 | | - <DbType Name="ntext" To="string" /> |
130 | | - <DbType Name="single" To="float" /> |
131 | | - <DbType Name="smallmoney" To="decimal" /> |
132 | | - <DbType Name="decimal" To="decimal" /> |
133 | | - <DbType Name="bfile" To="byte[]" /> |
134 | | - <DbType Name="float" To="float" /> |
135 | | - <DbType Name="uniqueidentifier" To="Guid" /> |
136 | | - <DbType Name="text" To="string" /> |
137 | | - <DbType Name="binary" To="byte[]" /> |
138 | | - <DbType Name="number" To="decimal" /> |
139 | | - <DbType Name="varbinary" To="byte[]" /> |
140 | | - <DbType Name="boolean" To="bool" /> |
141 | | - <DbType Name="long" To="byte[]" /> |
142 | | - <DbType Name="longtext" To="string" /> |
| 99 | + <DbType Name="float4" To="float" /> |
| 100 | + <DbType Name="float8" To="double" /> |
| 101 | + <DbType Name="numeric" To="decimal"/> |
| 102 | + <DbType Name="money" To="decimal"/> |
| 103 | + <DbType Name="text" To="string"/> |
| 104 | + <DbType Name="varchar" To="string"/> |
| 105 | + <DbType Name="bpchar" To="string"/> |
| 106 | + <DbType Name="citext" To="string" /> |
| 107 | + <DbType Name="json" To="string" /> |
| 108 | + <DbType Name="jsonb" To="string" /> |
| 109 | + <DbType Name="xml" To="string"/> |
| 110 | + <DbType Name="point" To="NpgsqlPoint"/> |
| 111 | + <DbType Name="lseg" To="NpgsqlLSeg"/> |
| 112 | + <DbType Name="path" To="NpgsqlPath"/> |
| 113 | + <DbType Name="polygon" To="NpgsqlPolygon" /> |
| 114 | + <DbType Name="line" To="NpgsqlLine"/> |
| 115 | + <DbType Name="circle" To="NpgsqlCircle"/> |
| 116 | + <DbType Name="box" To="NpgsqlBox"/> |
| 117 | + <DbType Name="bit(1)" To="bool"/> |
| 118 | + <DbType Name="bit(n)" To="BitArray"/> |
| 119 | + <DbType Name="varbit" To="BitArray"/> |
| 120 | + <!--<DbType Name="hstore" To="<![CDATA[ IDictionary<string, string>]]>"/>--> |
| 121 | + <DbType Name="uuid" To="Guid" /> |
| 122 | + <DbType Name="cidr" To="NpgsqlInet" /> |
| 123 | + <DbType Name="inet" To="IPAddress" /> |
| 124 | + <DbType Name="macaddr" To="PhysicalAddress" /> |
| 125 | + <DbType Name="tsquery" To="NpgsqlTsQuery" /> |
| 126 | + <DbType Name="tsvector" To="NpgsqlTsVector" /> |
| 127 | + <DbType Name="date" To="DateTime" /> |
| 128 | + <DbType Name="interval" To="TimeSpan" /> |
143 | 129 | <DbType Name="timestamp" To="DateTime" /> |
| 130 | + <DbType Name="timestamptz" To="DateTime" /> |
| 131 | + <DbType Name="time" To="TimeSpan" /> |
| 132 | + <DbType Name="timetz" To="DateTimeOffset" /> |
| 133 | + <DbType Name="bytea" To="byte[]" /> |
| 134 | + <DbType Name="oid" To="uint" /> |
| 135 | + <DbType Name="xid" To="uint" /> |
| 136 | + <DbType Name="cid" To="uint" /> |
| 137 | + <DbType Name="oidvector" To="uint[]" /> |
| 138 | + <DbType Name="char" To="byte" /> |
| 139 | + <DbType Name="geometry" To="PostgisGeometry" /> |
| 140 | + <DbType Name="record" To="object[]" /> |
144 | 141 | </Database> |
145 | 142 | <Database DbProvider="Oracle" Language="CSharp"> |
146 | 143 | <DbType Name="image" To="byte[]"/> |
|
0 commit comments