DNLiCore_DB 1.0.5

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

// Install DNLiCore_DB as a Cake Tool
#tool nuget:?package=DNLiCore_DB&version=1.0.5

---介绍---
DNLiCore_DB 是属于DNLiCore框架下的一个数据库工具类,目标支持数据库类型包括 MySql,SqlServer,SqlLite,Access
其中包括3种执行框架 Ado.net:SqlHelper,轻量级ORM:Petapoco,标准EF框架:EF Core


----------------------------------------MySql Start----------------------------------------------------------
------ADO.NET:DNLiCore_DB_MySqlHelper 使用说明------
1.引用DNLiCore_DB项目
2.在appsettings.json配置mysql数据库的配置例如
{
"ConnectionStrings": {
  "SqlServerConnection": "Server=*****;Database=*****;User ID=****;Password=*****;",
  "MySqlConnection": "Database='*****';Data Source=******;User ID=****;Password=******.;CharSet=utf8;SslMode=None"
}
}
3.在Startup.cs 进行服务注入
例如:
services.AddSingleton(typeof(DNLiCore_DB.IMySqlHelper),new DNLiCore_DB.MySqlHelper(Configuration.GetConnectionString("MySqlConnection")));
4.在控制器注入使用

------ORM:PetapocoHelper使用说明------
1.引用DNLiCore_DB项目
2.在appsettings.json配置mysql数据库的配置例如
{
"ConnectionStrings": {
  "SqlServerConnection": "Server=*****;Database=******;User ID=****;Password=*****;",
  "MySqlConnection": "Database='*****';Data Source=*****;User ID=*****;Password=*****.;CharSet=utf8;SslMode=None"
}
}
3.在Startup.cs 进行服务注入
例如:
services.AddSingleton(typeof(DNLiCore_DB.IPetaPocoHelper),new DNLiCore_DB.PetaPocoHelper(Configuration.GetConnectionString("MySqlConnection"),0));
4.在控制器注入使用


------EFCore使用说明------
1.创建相应的DBContext和实体    
1.1 通过程序包管理控制台生成DBContext和实体输入,按需引用DNLiCore_DB
    Scaffold-DbContext -Force  "Server=******;User Id=*****;Password=*****;Database=*****" -Provider "Pomelo.EntityFrameworkCore.MySql"     
 注意:1.表必须要有主键
      2.如果有需要只生成单表的加个 -Table 表名
   3.会存在datetime数据类型实体生成错误的情况,需要手动修改。     
1.3 在Startup.cs 进行服务注入
    例如:
    services.AddSingleton(typeof(DNLiCore_DB.IRepository), new DNLiCore_DB.Repository(new DNLiCore_Model.drewtestContext()));
1.4 在控制器注入使用

----------------------------------------MySql End----------------------------------------------------------

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. 
.NET Core netcoreapp2.1 is compatible.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 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.1.2 1,519 1/15/2019
1.1.1 1,427 1/7/2019
1.1.0 1,280 1/7/2019
1.0.9 1,467 12/27/2018
1.0.8 1,468 12/9/2018
1.0.7 1,652 12/9/2018
1.0.6 1,542 12/9/2018
1.0.5 1,481 12/7/2018
1.0.4 1,474 12/7/2018
1.0.3 1,399 12/7/2018
1.0.2 1,486 12/7/2018

Summary of changes made in this release of the package.