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.
<PackageVersion Include="SunnyUI.SqlSugar" Version="5.0.5.8" />
                    
Directory.Packages.props
<PackageReference Include="SunnyUI.SqlSugar" />
                    
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 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.
#addin nuget:?package=SunnyUI.SqlSugar&version=5.0.5.8
                    
Install SunnyUI.SqlSugar as a Cake Addin
#tool nuget:?package=SunnyUI.SqlSugar&version=5.0.5.8
                    
Install SunnyUI.SqlSugar as a Cake Tool
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 365 5/3/2024
5.1.4.128 268 12/19/2023
5.1.4.124 251 11/26/2023
5.1.4.112 256 10/29/2023
5.1.4.105 337 9/9/2023
5.1.4.100 324 8/18/2023
5.1.4.73 481 5/17/2023
5.1.4.66 472 4/8/2023
5.1.4.58 452 3/11/2023
5.1.3.52 464 2/24/2023
5.1.3.45 492 1/13/2023
5.1.3.43 525 1/8/2023
5.1.3.41 491 12/21/2022
5.1.3.35 492 11/30/2022
5.1.3.34 496 11/22/2022
5.1.3.32 556 11/19/2022
5.0.9.1 760 6/28/2022
5.0.6.4 754 4/7/2022
5.0.6.1 635 3/26/2022
5.0.5.9 633 3/11/2022
5.0.5.8 625 3/10/2022
5.0.5.5 641 3/8/2022