DbCRUD.Mysql 1.3.0

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

// Install DbCRUD.Mysql as a Cake Tool
#tool nuget:?package=DbCRUD.Mysql&version=1.3.0

数据库连接及初始化

 //数据库连接
  IDbCRUD testdb = new MysqlCRUD(@"Server=127.0.0.1;Database=testdb;Uid=root;Pwd=;");

插入数据

 //testdb.CheckConnect();
             int dbcount = testdb.TableExists(tb_custormer) ? testdb?.Count(tb_custormer) ?? 0 : 0;
            //**同步插入对象数据
            var customer = new CustomerViwe
            {
                Id = dbcount + 1, ////实体类,ID不赋值,默认根据数据类型自动整数编号,支持int,long,objectid
                Name = "对象插入",
                Phones = new string[] { "80000", "90000" },
                IsActive = true,
            };
            var result = testdb.Insert(tb_custormer, customer);
            Assert.IsTrue(result.Stutas);
            int count=testdb?.Count(tb_custormer) ??0;
            Assert.IsTrue(count > 0);
            var findresult = testdb.FindAndResult<CustomerViwe>(tb_custormer, "Name='对象插入'");
            Assert.IsTrue(findresult.ResultData?.Any());
            //**同步插入字典数据
            var dic1 = new Dictionary<string, object>
            {
                //{ "_id", 1 },//***如果不指定ID,插入时会自动编一个int的唯一ID
                { "Name", "mysql自动编号插入" },
                { "Qty", 19},
                { "DDate", DateTime.Now }
            };
            var result11 = testdb.Insert(autoIDData, dic1);
            Assert.IsTrue(result.Stutas);
            int count1 = testdb?.Count(autoIDData) ?? 0;
            Assert.IsTrue(count1 > 0);
            //插入JSON数据
            string jsondata = JsonConvert.SerializeObject(dic1);
            var result12 =testdb.Insert(tb_jsondata, jsondata);
            Assert.IsTrue(result12.Stutas);
            var json_findresult = testdb.FindAndResult<Dictionary<string, object>>(tb_jsondata, "id>0");
            Assert.IsTrue(json_findresult.ResultData?.Count() > 0);
            //**sql命令插入
            var result13 = testdb.Insert($"insert INTO Sqldata (`Name`,`DDATE`) values ('test','2023-05-13')");
            Assert.IsTrue(result13.Stutas);
            var findresult1 = testdb.FindAndResult<Dictionary<string, object>>(sqldata, "name='test'");
            Assert.IsTrue(findresult1.ResultData?.Count() > 0);
            //**批量插入列表
            List<Dictionary<string, object>> listdata = new List<Dictionary<string, object>>();
            int maxid = testdb.Max<int>(dictable);
            for (int i = 0; i < 10; i++)
            {
                maxid++;
                var dic2 = new Dictionary<string, object>
                {
                    { "_id",maxid },
                    { "Name", $"批量插入{i}" },
                    { "Qty", 19+maxid},
                    { "DDate", DateTime.Now }
                };
                listdata.Add(dic2);
            }
            var listResult= testdb.Insert(dictable, listdata);
            Assert.IsTrue(listResult.Stutas);

更新数据

    var updata = new Dictionary<string, object>
    {
        { "Name", "更新指定字段数据" },
        { "Qty", 300}
    };
    var upresult = testdb.UpDate(dictable, updata, "_id=2");   //更新_id=2的数据
  • 更新及插入数据(数据存在更新,不存在插入)
   //** 更新或插入数据
            var dic1 = new Dictionary<string, object>
            {
                { "_id", 2 },
                { "Name", "插入或更新单条数据" },
                { "Qty", 200},
                { "DDate", DateTime.Now }
            };
            var result= testdb.Upsert(dictable, dic1);
            Assert.IsTrue(result.Stutas);
            //** 批量插入或更新
            var dic3 = new Dictionary<string, object>
            {
                { "_id", 3 },
                { "Name", "批量插入或更新" },
                { "Qty", 300},
                { "DDATE", DateTime.Now }
            };
            List<Dictionary<string,object>> listdata=new List<Dictionary<string, object>> { dic3,dic1};
            var listresult = testdb.Upsert(dictable, listdata);
            Assert.IsTrue(listresult.Stutas);
            //var aa= Assert.ThrowsException<Exception>(async ()=> await testdb.FindAsync<Dictionary<string, object>>("", "_id=2"),"aaaf");
            var getupdatalist=testdb.Find<Dictionary<string, object>>(dictable, "_id=3");
            var getupdata1=  getupdatalist.FirstOrDefault();
            Assert.AreEqual(300, getupdata1.GetValueOrDefault("Qty", 0));//根据值验证是否更新成功
            //** 不存在就插入
            int maxid = testdb.Max<int>(dictable)+1;
            var dic4 = new Dictionary<string, object>
            {
                { "_id", maxid },
                { "Name", "根据_id不存在插入值" },
                { "Qty", 8000},
                { "DDATE", DateTime.Now }
            };
            testdb.Upsert(dictable, dic4);
            var get_insertdata = testdb.Find<Dictionary<string, object>>(dictable, $"_id={maxid}");
            Assert.IsNotNull(get_insertdata);

查询数据

   //查找id=2的数据
            var databyid = testdb.FindByID<Dictionary<string, object>>(dictable,3);
            Assert.IsNotNull(databyid);
            //查找Qty>10的数据
            var wheredata = testdb.Find<Dictionary<string, object>>(dictable, "Qty>10");
            Assert.IsNotNull(wheredata);
            //sql语句查找的数据
            string sqlcmd = $"select * from {dictable}";
            var sqldata = testdb.Find<Dictionary<string, object>>(sqlcmd);
            Assert.IsNotNull(sqldata);
            //分页查找的数据
            var pagedata = testdb.GetPagingData<Dictionary<string, object>>(dictable, "Qty>10",pageindex:1,pagenumber:10);
            Assert.IsNotNull(pagedata);

删除数据

   //**删除_id=2的数据
            var result = testdb.Delete(dictable,2);
            Assert.IsTrue(result.Stutas);
            //**删除qty<30的数据
            var wherresult = testdb.Delete(dictable, "Qty<200");
            Assert.IsTrue(wherresult.Stutas);
            //**使用sql语句删除_id=30的数据
            string sql = $"delete from {dictable} where _id=30";
            var sqlresult = testdb.Delete(sql);
            Assert.IsTrue(sqlresult.Stutas);
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  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 is compatible.  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.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 is compatible. 
.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.7.1 51 6/24/2024
1.7.0 83 4/8/2024
1.6.1 103 4/6/2024
1.6.0 96 3/22/2024
1.5.12 101 3/21/2024
1.5.11 141 8/27/2023
1.5.10 133 8/4/2023
1.5.8 121 7/27/2023
1.5.7 126 7/26/2023
1.5.6 120 7/20/2023
1.5.5 117 6/26/2023
1.5.4 116 6/18/2023
1.5.3 111 6/13/2023
1.5.2 123 6/11/2023
1.5.1 114 6/9/2023
1.5.0 115 6/8/2023
1.4.0 115 6/6/2023
1.3.1 121 5/17/2023
1.3.0 109 5/14/2023
1.2.0 132 5/11/2023
1.1.0 128 5/10/2023
1.0.0 125 5/9/2023

简单的增删改查