上一页 1 2 3 4 5 6 7 8 ··· 61 下一页
摘要: 1、数据绑定报错: 选择 DataSource ,添加数据源,选择Object类型 no suitable object was found in this project to be used as a data source. before running the wizard again,pl 阅读全文
posted @ 2022-06-20 18:44 hao_1234_1234 阅读(561) 评论(0) 推荐(0) 编辑
摘要: 解决方案: 数据库或PowerDesigner设置主键自增长 根据数据库生成EFCore 代码 entity.Property(e => e.ZoneId) .ValueGeneratedNever() .HasColumnName("ZoneID"); 变为: entity.Property(e 阅读全文
posted @ 2022-04-25 21:10 hao_1234_1234 阅读(469) 评论(0) 推荐(0) 编辑
摘要: pnpm安装报错:选择编程语言 解决:vsCode 2022切换到git bash 控制台 阅读全文
posted @ 2022-03-17 16:00 hao_1234_1234 阅读(318) 评论(0) 推荐(0) 编辑
摘要: 第一步安装: 1后端安装: https://www.dxper.net/thread-40506-1-1.html 我安装的是DevExpress 21.2.6 和及其帮助文档 下载二:百度网盘下载:Components: https://pan.baidu.com/s/19qbJcRPei4OF6 阅读全文
posted @ 2022-03-09 11:12 hao_1234_1234 阅读(449) 评论(1) 推荐(0) 编辑
摘要: 1重新开始页码如何设置 https://zhidao.baidu.com/question/402101365.html 2 取消就是删除页码,然后重新设置页码 3Word2016中快速删除分页符与空白页的方法 http://www.officezhushou.com/word2016/6049.h 阅读全文
posted @ 2022-03-03 17:53 hao_1234_1234 阅读(980) 评论(0) 推荐(0) 编辑
摘要: 几十万数据,分页查询10行,花了30秒,太离谱! 改进 1、连表查询拆分成两个查询,在内存中连表。 从30秒,变3秒 2、日期查询改成区间查询 airHourly.Date 数据举例:2015-01-01 02:00:00.000 System.Data.Entity.DbFunctions.Tru 阅读全文
posted @ 2022-02-17 17:00 hao_1234_1234 阅读(203) 评论(0) 推荐(0) 编辑
摘要: 未能创建 SSL/TLS 安全通道,添加两句: ServicePointManager.ServerCertificateValidationCallback += (s, cert, chain, sslPolicyErrors) => true; ServicePointManager.Secu 阅读全文
posted @ 2022-01-26 15:45 hao_1234_1234 阅读(164) 评论(0) 推荐(0) 编辑
摘要: 转载来源:https://www.cnblogs.com/hmgx/p/11942342.html 1、将list转化为逗号分割的字符串 String str = String.join(",", list); String str = StringUtils.json(list.toArray() 阅读全文
posted @ 2022-01-21 11:32 hao_1234_1234 阅读(13439) 评论(0) 推荐(0) 编辑
摘要: 编程:不能以局部技巧和勤奋,来掩盖对全局设计的无知和懒惰。 就像:打仗不能以局部战役的技巧和勤奋,来掩盖全局谋划的无知和懒惰。 在小公司,很多编程,都是面向数据库的编程,数据库结构若设计不满足“客户最终想看到的结果”,那么前端显示、后端操作都会事倍功半。 阅读全文
posted @ 2021-12-23 12:50 hao_1234_1234 阅读(47) 评论(0) 推荐(0) 编辑
摘要: 转载来源:https://www.cnblogs.com/lzrabbit/archive/2012/04/22/2465313.html 身为一名小小的程序猿,在日常开发中不可以避免的要和where in和like打交道,在大多数情况下我们传的参数不多简单做下单引号、敏感字符转义之后就直接拼进了S 阅读全文
posted @ 2021-12-20 18:46 hao_1234_1234 阅读(364) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 61 下一页