• SqlSugar直接执行Sql


    SqlSugar直接执行Sql

    我的思路:

    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; } }
    复制代码
  • 相关阅读:
    vue+vuex构建单页应用
    vue如何做分页?
    cookie和session的原理机制
    经常遇到js的面试题
    CSS浏览器兼容性问题解决方法总结
    前端性能优化----yahoo前端性能团队总结的35条黄金定律
    bom对象
    正则表达式
    JavaScript
    常见浏览器bug以及解决方法
  • 原文地址:https://www.cnblogs.com/zkwarrior/p/15784108.html
Copyright © 2020-2023  润新知