• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    MySQL通过实例化对象参数查询实例讲解

    本篇文章给大家带来的内容是关于MySQL如何通过实例化对象参数查询数据 ?(源代码),有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。

    public static string QueryByEntityT>(T t) where T : new()
    {  string resultstr = string.Empty;
      MySqlDataReader reader = null;  try
      {
        Type type = typeof(T);
        PropertyInfo[] properties = type.GetProperties();    string select = string.Format("Select * from {0} {1}", type.Name, "{0}");    string where = string.Empty;    foreach (PropertyInfo property in properties)
        {      var value = t.GetPropertyValueT>(property);      if (value != null  !value.Equals(property.GetDefaultValue()))
          {        if (string.IsNullOrEmpty(where))
            {          where = string.Format(" where {0}='{1}' ", property.Name, value);
            }        else
            {          where = string.Format(" {0} and {1} = '{2}' ", where, property.Name, value);
            }
          }
        }    select = string.Format(select, where);
     
        MySqlConnection connection = OpenConnection();    if (connection == null)      return resultstr;
        MySqlCommand _sqlCom = new MySqlCommand(select, connection);
        reader = _sqlCom.ExecuteReader();
        ListT> tList = new ListT>();    while (reader.Read())
        {
          T t1 = new T();      foreach (PropertyInfo property in properties)
          {        if (!string.IsNullOrEmpty(reader[property.Name].ToString()))
            {
              property.SetMethod.Invoke(t1, new object[] { reader[property.Name] });
            }
          }
          tList.Add(t1);
        }
        resultstr = JsonConvert.SerializeObject(tList);
      }  catch (Exception ex)
      {
        Logging.Error(string.Format("查询数据库失败,{0}", ex.Message));
      }  finally
      {    if (reader != null)
        {
          reader.Close();
          reader.Dispose();
        }
      }  return resultstr;
    }internal static class ObjectExtend
    {  public static object GetPropertyValueT>(this object obj, PropertyInfo property)
      {
        Type type = typeof(T);
        PropertyInfo propertyInfo = type.GetProperty(property.Name);    if (propertyInfo != null)
        {      return propertyInfo.GetMethod.Invoke(obj, null);
        }    return null;
      }  public static object GetDefaultValue(this PropertyInfo property)
      {    return property.PropertyType.IsValueType ? Activator.CreateInstance(property.PropertyType) : null;
      }
    }

    通过实例化参数,对属性赋值,将对象作为参数传入,反射获取对象名称,列名,列值。要求对象名与表名一致,属性与列名一致,感谢大家对脚本之家的支持。

    您可能感兴趣的文章:
    • 浅谈pymysql查询语句中带有in时传递参数的问题
    • 使用Limit参数优化MySQL查询的方法
    • MySQL8.0内存相关参数总结
    • python mysql中in参数化说明
    • Python MySQLdb 执行sql语句时的参数传递方式
    • Python MySQL 日期时间格式化作为参数的操作
    • MYSQL配置参数优化详解
    • MySQL性能全面优化方法参考,从CPU,文件系统选择到mysql.cnf参数优化
    • MySQL 5.6下table_open_cache参数优化合理配置详解
    • MySQL 参数相关概念及查询更改方法
    上一篇:MySQL连接抛出Authentication Failed错误的分析与解决思路
    下一篇:CentOS 7.4 64位安装配置MySQL8.0的详细步骤
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    MySQL通过实例化对象参数查询实例讲解 MySQL,通过,实例,化,对象,