SunnyUI.SqlSugar 5.0.5.8

There is a newer version of this package available.
See the version list below for details.
dotnet add package SunnyUI.SqlSugar --version 5.0.5.8
NuGet\Install-Package SunnyUI.SqlSugar -Version 5.0.5.8
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="SunnyUI.SqlSugar" Version="5.0.5.8" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SunnyUI.SqlSugar --version 5.0.5.8
#r "nuget: SunnyUI.SqlSugar, 5.0.5.8"
#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.
// Install SunnyUI.SqlSugar as a Cake Addin
#addin nuget:?package=SunnyUI.SqlSugar&version=5.0.5.8

// Install SunnyUI.SqlSugar as a Cake Tool
#tool nuget:?package=SunnyUI.SqlSugar&version=5.0.5.8
namespace Sunny.SqlSugar.Demo
{
    class Program
    {
        static void Main(string[] args)
        {
            //创建连接
            DAL.InitMySql("DBAuth", "123456");

            //判断连接状态
            Console.WriteLine("Connection state: " + DAL.Connected);
            if (!DAL.Connected)
            {
                //创建数据库
                DAL.CreateDatabase();
            }

            //更新连接状态(InitMySql 和 CreateDatabase 会自动调用)
            DAL.InitConnectionState();
            Console.WriteLine("Connection state: " + DAL.Connected);

            if (DAL.Connected)
            {
                //创建数据表
                DAL.CreateTable(typeof(ttest));

                //生成数据表实体类
                DAL.CreateClassFile("C:\\", "DBAuth");

                //调用 DAL.Client(SqlSugarClient)处理数据
                DAL.Client.Queryable<ttest>().ToList();
            }

            Console.WriteLine("按任意键退出。");
            Console.ReadKey();
        }
    }
}
Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 is compatible.  net48 was computed.  net481 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
5.1.4.154 46 5/3/2024
5.1.4.128 214 12/19/2023
5.1.4.124 212 11/26/2023
5.1.4.112 217 10/29/2023
5.1.4.105 299 9/9/2023
5.1.4.100 286 8/18/2023
5.1.4.73 433 5/17/2023
5.1.4.66 420 4/8/2023
5.1.4.58 408 3/11/2023
5.1.3.52 415 2/24/2023
5.1.3.45 445 1/13/2023
5.1.3.43 481 1/8/2023
5.1.3.41 447 12/21/2022
5.1.3.35 444 11/30/2022
5.1.3.34 446 11/22/2022
5.1.3.32 504 11/19/2022
5.0.9.1 707 6/28/2022
5.0.6.4 698 4/7/2022
5.0.6.1 575 3/26/2022
5.0.5.9 579 3/11/2022
5.0.5.8 572 3/10/2022
5.0.5.5 593 3/8/2022