IceTea.SqlCreator 1.0.5

dotnet add package IceTea.SqlCreator --version 1.0.5
                    
NuGet\Install-Package IceTea.SqlCreator -Version 1.0.5
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="IceTea.SqlCreator" Version="1.0.5" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="IceTea.SqlCreator" Version="1.0.5" />
                    
Directory.Packages.props
<PackageReference Include="IceTea.SqlCreator" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add IceTea.SqlCreator --version 1.0.5
                    
#r "nuget: IceTea.SqlCreator, 1.0.5"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package IceTea.SqlCreator@1.0.5
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=IceTea.SqlCreator&version=1.0.5
                    
Install as a Cake Addin
#tool nuget:?package=IceTea.SqlCreator&version=1.0.5
                    
Install as a Cake Tool

<Center><H1>C#和数据库类型映射表</H1></Center>

  • Sqlite

    宽类型 详细类型 C#
    INTEGER INT Int32
    INTEGER INTEGER Int64
    INTEGER TINYINT Byte
    INTEGER SMALLINT Int16
    INTEGER MEDIUMINT Int32
    INTEGER BIGINT Int64
    INTEGER UNSIGNED BIG INT Object
    INTEGER INT2 Object
    INTEGER INT8 SByte
    NUMERIC NUMERIC Decimal
    NUMERIC DECIMAL(10,5) Decimal
    NUMERIC BOOLEAN Boolean
    NUMERIC DATE DateTime
    NUMERIC DATETIME DateTime
    REAL REAL Double
    REAL DOUBLE Double
    REAL DOUBLE PRECISION Object
    REAL FLOAT Double
    TEXT CHARACTER(20) Object
    TEXT VARCHAR(255) String
    TEXT VARYING CHARACTER(255) Object
    TEXT NCHAR(55) String
    TEXT NATIVE CHARACTER(70) Object
    TEXT NVARCHAR(100) String
    TEXT TEXTCLOB Object
  • Mysql

    Mysql 类型 C#
    bit(1) UInt64
    tinyint(1) Boolean
    bigint(20) Int64
    bigint(20) unsigned UInt64
    binary(1) Byte[]
    blob Byte[]
    char(1) String
    date DateTime
    datetime DateTime
    decimal(10,0) DECIMAL
    double Double
    float Single
    int(11) Int32
    int(10) unsigned UInt32
    mediumblob Byte[]
    mediumtext String
    longblob Byte[]
    longtext String
    mediumint(9) Int32
    mediumint(8) unsigned UInt32
    smallint(6) Int16
    smallint(5) unsigned UInt16
    text String
    time TimeSpan
    timestamp DateTime
    tinyblob Byte[]
    tinyint(4) SByte
    tinyint(3) unsigned Byte
    String tinytext
    varbinary(100) Byte[]
    varchar(100) String
    year(4) Int16
    json String
  • Postgresql

    Postgresql 类型 C#
    bit(1) Boolean
    bool Boolean
    bigserial Int64
    int8 Int64
    serial4 Int32
    int4 Int32
    smallserial Int16
    int2 Int16
    float8 Double
    float4 Single
    bytea Byte[]
    date DateTime
    timestamp DateTime
    time TimeSpan
    varchar(100) String
    text String
    numeric DECIMAL
    money DECIMAL
  • SqlServer

    SqlServer 类型 C#
    bit Boolean
    bigint Int64
    int Int32
    smallint Int16
    float Double
    real Single
    date DateTime
    smalldatetime DateTime
    datetime DateTime
    time(0) TimeSpan
    varchar(100) String
    text String
    money DECIMAL
    decimal(38,0) DECIMAL
    image Byte[]
    binary Byte[]
    varbinary(1024) Byte[]
    uniqueidentifier Guid
    uniqueidtinyintentifier Byte
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.5 381 11/17/2025
1.0.4 222 12/20/2024
1.0.3 331 11/9/2023
1.0.2 220 10/19/2023
1.0.1 291 10/16/2023 1.0.1 is deprecated because it has critical bugs.
1.0.0 288 10/13/2023 1.0.0 is deprecated because it has critical bugs.