随笔 - 122  文章 - 0  评论 - 10  阅读 - 18万

SqlSugar直接执行Sql

参考:http://www.codeisbug.com/Doc/8/1132

我的思路:

1、数据库中写好sql

2、用SqlSugar直接执行sql,获取DataTable的数据

3、DataTable转成List

复制代码
 class Program
    {
        static void Main(string[] args)
        {
            SqlSugarClient db = new SqlSugarClient(
             new ConnectionConfig()
             {
                 ConnectionString = "连接字符串***",
                 DbType = DbType.SqlServer,//设置数据库类型
                IsAutoCloseConnection = true,//自动释放数据务,如果存在事务,在事务结束后释放
                InitKeyType = InitKeyType.Attribute //从实体特性中读取主键自增列信息
            });
      
            var dt = db.Ado.GetDataTable("Sql语句***",
                new List<SugarParameter>(){
                  new SugarParameter("@name","1") //参数
                });
            List<StudentModel> studentModels = new List<StudentModel>();
            studentModels = ConvertToList(dt);
        }

     //DataTable转成List
public static List<StudentModel> ConvertToList(DataTable dt) { // 定义集合 List<StudentModel> ts = new List<StudentModel>(); // 获得此模型的类型 Type type = typeof(StudentModel); //定义一个临时变量 string tempName = string.Empty; //遍历DataTable中所有的数据行 foreach (DataRow dr in dt.Rows) { StudentModel t = new StudentModel(); // 获得此模型的公共属性 PropertyInfo[] propertys = t.GetType().GetProperties(); //遍历该对象的所有属性 foreach (PropertyInfo pi in propertys) { tempName = pi.Name;//将属性名称赋值给临时变量 //检查DataTable是否包含此列(列名==对象的属性名) if (dt.Columns.ContainsKey(tempName)) { // 判断此属性是否有Setter if (!pi.CanWrite) continue;//该属性不可写,直接跳出 //取值 object value = dr[tempName]; //如果非空,则赋给对象的属性 if (value != DBNull.Value) pi.SetValue(t, value, null); } } //对象添加到泛型集合中 ts.Add(t); } return ts; } }
复制代码

 

posted on   技术高超  阅读(14524)  评论(4编辑  收藏  举报
编辑推荐:
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
阅读排行:
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· 单线程的Redis速度为什么快?
· SQL Server 2025 AI相关能力初探
· AI编程工具终极对决:字节Trae VS Cursor,谁才是开发者新宠?
· 展开说说关于C#中ORM框架的用法!
< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

点击右上角即可分享
微信分享提示