摘要: 1.C# $ 内插字符串 Console.WriteLine($"The value of pi is {Math.PI}"); 替代string.format 2. switch 的新写法 colorBand 是枚举 public static RGBColor FromRainbow(Rainb 阅读全文
posted @ 2019-08-12 11:04 雪原日暮 阅读(226) 评论(0) 推荐(0) 编辑
 
该文被密码保护。 阅读全文
posted @ 2019-05-09 11:30 雪原日暮 阅读(36) 评论(0) 推荐(0) 编辑
  2024年7月3日
摘要: https://blog.csdn.net/Java_lilin/article/details/103063930 windows安装 阅读全文
posted @ 2024-07-03 11:38 雪原日暮 阅读(1) 评论(0) 推荐(0) 编辑
  2024年6月5日
摘要: https://www.cnblogs.com/yangchongxing/p/15145397.html es查询 https://blog.csdn.net/2301_79099434/article/details/137663008 阅读全文
posted @ 2024-06-05 15:34 雪原日暮 阅读(1) 评论(0) 推荐(0) 编辑
  2024年4月24日
摘要: 官网文档地址: 1.实体生成:https://www.donet5.com/Doc/11 使用codefist可以将db表生成对应的实体文件,同时会自动生成代码 2.codefist 程序中可以走codefist。 可以设置禁止更新和删除来保护表结构,只在第一次的时候才会创建表 支持对比结构手动更改 阅读全文
posted @ 2024-04-24 18:17 雪原日暮 阅读(6) 评论(0) 推荐(0) 编辑
  2024年4月19日
摘要: string time = Convert.ToDateTime(date).ToString("yyyy-MM-dd HH:mm");//24小时 string time = Convert.ToDateTime(date).ToString("yyyy-MM-dd hh:mm");//12小时 阅读全文
posted @ 2024-04-19 17:04 雪原日暮 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 痛点:遇到一个问题,代码嵌套的es查询逻辑,太乱,太复杂。通过代码直观人工去转dsl发现根本不可能。后老看到调试模式能拿到dsl,方法如下 https://www.elastic.co/guide/en/elasticsearch/client/net-api/current/debug-mode. 阅读全文
posted @ 2024-04-19 10:25 雪原日暮 阅读(8) 评论(0) 推荐(0) 编辑
  2024年4月1日
摘要: 1.下载 DebugDiag 2.https://learn.microsoft.com/zh-cn/troubleshoot/developer/webapps/iis/health-diagnostic-performance/troubleshoot-high-cpu-in-iis-app-p 阅读全文
posted @ 2024-04-01 16:51 雪原日暮 阅读(28) 评论(0) 推荐(0) 编辑
  2024年3月14日
摘要: https://www.microsoft.com/en-us/download/details.aspx?id=103453 下载DebugDiag 参照此图: https://learn.microsoft.com/zh-cn/troubleshoot/developer/webapps/iis 阅读全文
posted @ 2024-03-14 08:58 雪原日暮 阅读(7) 评论(0) 推荐(0) 编辑
  2024年2月26日
摘要: https://www.cnblogs.com/xkqwy/p/16353029.html 总结 1 . string类型 写命令通过set关键字实现,set [key] [value]读命令通过get关键字实现,get [key] 2 . list列表类型 通过rpush、lpush,将一个或多个 阅读全文
posted @ 2024-02-26 14:56 雪原日暮 阅读(9) 评论(0) 推荐(0) 编辑
  2023年12月4日
摘要: https://baijiahao.baidu.com/s?id=1766295825192459672&wfr=spider&for=pc .NET Framework、.NET Standard、.NET Core与.NET 5/6/7 区别 .NET Framework框架只能在windows 阅读全文
posted @ 2023-12-04 15:48 雪原日暮 阅读(154) 评论(0) 推荐(0) 编辑
摘要: https://mp.weixin.qq.com/s/H1irxuJd5nQt045Q6zMkEQ https://blog.csdn.net/thc1987/article/details/105274477 方案: 1.request.ServicePoint.Expect100Continue 阅读全文
posted @ 2023-12-04 11:47 雪原日暮 阅读(14) 评论(0) 推荐(0) 编辑