c# wpf 开发中安装使用SqlSugar操作MySql数据库具体操作步骤保姆级教程

文章详细介绍wpf 开发中安装使用SqlSugar操作MySql数据库具体操作步骤,以及需要同时安装的其他工具包

首先声明具体开发环境:.NetFramework 4.7.2

安装的工具包版本为:SqlSugar 5.1.4.180,

同时还需要安装MySql.Data 和Newtonsoft.Json,我安装的是MySql.Data 8.0.33和 Newtonsoft.Json 13.0.3

1.创建一个wpf .NetFramework项目,选择.NetFramework 4.7.2

2.右键管理方案名称,点击管理NuGet程序包

3.搜索并安装以下三个工具包,注意看右边的详细信息判断安装的具体版本是否支持自己的.NetFramework版本,有的写的不清楚,可以去网上搜一下,问问deepseek也行

4.在程序中连接数据库,并做增删改查操作

cs 复制代码
public class users//此处的类名users需要和数据库中的数据表的表名相同
    {
        public int user_id { get; set; }
        public string user_name { get; set; }
        public int user_age { get; set; }
        public string user_email { get; set; }
    }

public class SqlSugarHelper
    {
        private static readonly string connectionString = "Server=10.11.10.105;Database=Info_Manage;User ID=tom;Password=123456;";
        
        private static SqlSugarClient GetDbClient()
        {
            return new SqlSugarClient(new ConnectionConfig()
            {
                ConnectionString = connectionString,
                DbType = DbType.MySql, // 设置数据库类型
                IsAutoCloseConnection = true, // 自动关闭连接
                InitKeyType = InitKeyType.Attribute // 初始化主键和自增列信息的方式
            });
        }

        public static List<users> GetAllUsers()//此行代码中的List<users>中的users为数据库中用户表的表名,下面方法中也一样
        {
            try
            {
                using (var db = GetDbClient())
                {
                    return db.Queryable<users>().ToList();
                }
            }
            catch (Exception ex)
            {
                // 记录日志或处理异常
                Console.WriteLine($"获取所有用户时发生异常: {ex.Message}");
                throw;
            }
        }
        public static users GetUserById(int id)
        {
            try
            {
                using (var db = GetDbClient())
                {
                    return db.Queryable<users>().Where(u => u.user_id == id).First();
                }
            }
            catch (Exception ex)
            {
                // 记录日志或处理异常
                Console.WriteLine($"获取用户时发生异常: {ex.Message}");
                throw;
            }
        }

        public static bool InsertUser(users user)
        {
            try
            {
                using (var db = GetDbClient())
                {
                    return db.Insertable(user).ExecuteCommand() > 0;
                }
            }
            catch (Exception ex)
            {
                // 记录日志或处理异常
                Console.WriteLine($"插入用户时发生异常: {ex.Message}");
                throw;
            }
        }

        public static bool UpdateUser(users user)
        {
            try
            {
                using (var db = GetDbClient())
                {
                    return db.Updateable(user).ExecuteCommand() > 0;
                }
            }
            catch (Exception ex)
            {
                // 记录日志或处理异常
                Console.WriteLine($"更新用户时发生异常: {ex.Message}");
                throw;
            }
        }

        public static bool DeleteUser(int id)
        {
            try
            {
                using (var db = GetDbClient())
                {
                    return db.Deleteable<users>().Where(u => u.user_id == id).ExecuteCommand() > 0;
                }
            }
            catch (Exception ex)
            {
                // 记录日志或处理异常
                Console.WriteLine($"删除用户时发生异常: {ex.Message}");
                throw;
            }
        }

    }
相关推荐
周杰伦fans2 分钟前
C# 集合框架完全指南:从IEnumerable到ObservableCollection的深度解析
开发语言·c#
balance_rui9 分钟前
stm32进阶笔记
stm32·c#
SunnyDays10112 小时前
在 C# 中将邮件转换为 PDF | MSG 转 PDF | EML 转 PDF
c#·邮件转pdf·eml转pdf·msg转pdf
almighty272 小时前
C# WPF实现ComboBox实时搜索与数据绑定
开发语言·c#·wpf·combobox
大飞pkz2 小时前
【设计模式】桥接模式
开发语言·设计模式·c#·桥接模式
计算机学姐3 小时前
基于微信小程序的扶贫助农系统【2026最新】
java·vue.js·spring boot·mysql·微信小程序·小程序·mybatis
程序新视界3 小时前
MySQL的两种分页方式:Offset/Limit分页和游标分页
后端·sql·mysql
玖笙&3 小时前
✨WPF编程基础【1.2】:XAML中的属性
c++·wpf·visual studio
AutomanLV4 小时前
c# datagridview添加list内容
程序人生·c#
周杰伦的稻香4 小时前
MySQL中的空间碎片率计算分析
android·数据库·mysql