摘要:
chrome://flags/#legacy-tls-enforced 阅读全文
摘要:
一、什么是特性 特性是一种允许我们向程序的程序集添加元数据的语言结构,它是用于保存程序结构信息的某种特殊类型的类。 MSDN中对它的解释是:特性提供功能强大的方法以将声明信息与 C# 代码(类型、方法、属性等)相关联。特性与程序实体关联后,即可在运行时使用名为“反射”的技术查询属性。 (有关元数据和 阅读全文
摘要:
getEnabled 报错原因是 getEnabled是个属性,要加上个对象this.getEnabled() 就没问题 阅读全文
摘要:
/// <summary> /// 获取某一列的所有值 /// </summary> /// <typeparam name="T">列数据类型</typeparam> /// <param name="dtSource">数据表</param> /// <param name="filedName 阅读全文
摘要:
一、拼接字符串类型的字段 string sql = @"select distinct ziduan from tablename where ziduan in ('{0}')"; sql=string.Format(sql, string.Join("','", list.ToArray())) 阅读全文
摘要:
为了方便Dapper操作可以使用Dapper的相关扩展dapper simplecrud。 1.首先点击管理NuGet 2.在管理页面中搜索 Dapper.SimpleCRUD并安装 然后就可以使用该包下的扩展 经过好久的寻找找到该文章,随便吐槽一下百度真的十分坑爹,找的无用信息太多 https:/ 阅读全文
摘要:
字段:number 是integer类型 在表test中 select cast(number as char) as number from test; 或者convert()方法。因为转换的时候mysql不支持转换成varchar所有要转成char. /* 比如将123转换为char类型 */ 阅读全文
摘要:
INSERT INTO `sys_params` ( `name`, `resx_key`, `value`, `creator_id`, `create_time`, `update_by`, `update_time`, `data_type`, `add_redis`, `sort_type` 阅读全文
摘要:
找不到与以下参数匹配的产品:channelId: VisualStudio.15.ReleaseproductId: Microsoft.VisualStudio.Product.Community 解决办法: 删除隐藏文件夹:C:\ProgramData\Microsoft\VisualStudi 阅读全文