上一页 1 2 3 4 5 6 7 8 9 ··· 43 下一页
摘要: 官方下载地址 阅读全文
posted @ 2023-08-17 00:38 火军刀 阅读(38) 评论(0) 推荐(0)
摘要: 网址:https://learn.microsoft.com/zh-cn/aspnet/mvc/ 跟着教程的指导,一步一步走下来没有问题,但是到了 创建连接字符串并使用 SQL Server LocalDB 这一节时,遇到了各种问题,总结起来就是连不上数据库,也不像教程中所说的自动创建数据库。 是因 阅读全文
posted @ 2023-07-16 19:36 火军刀 阅读(34) 评论(0) 推荐(0)
摘要: 很多书和文章都希望能够从原理层面把代理机制讲清楚,从C和C++的指针讲到线程安全,从通用类库讲到事件驱动,对于高端玩家,这是很有必要的,但对于初学者,就容易越看越晕,从云山雾罩,到云深不知处,本来只有一个概念不懂,现在变成N个了,最后只能投降,不了了之。 这个概念确实不太容易理解。下面尝试根据我的理 阅读全文
posted @ 2023-03-15 00:42 火军刀 阅读(226) 评论(0) 推荐(0)
摘要: 解决办法,在配置文件中加入如下配置即可: <requestFiltering allowDoubleEscaping="true"></requestFiltering> 完整结构如下所示: <configuration> <system.webServer> <security> <request 阅读全文
posted @ 2023-03-03 16:59 火军刀 阅读(267) 评论(0) 推荐(0)
摘要: continuing with import will result in projects with build errors 这句话直观上不太好理解,得拆开来看 continuing with 继续做 import 导入。在这里是个名词。 will 将会 result in 导致 project 阅读全文
posted @ 2023-02-04 11:48 火军刀 阅读(25) 评论(0) 推荐(0)
摘要: SELECT (total_elapsed_time / execution_count) / 1000 N'平均时间ms', total_elapsed_time / 1000 N'总花费时间ms', total_worker_time / 1000 N'所用的CPU总时间ms', total_p 阅读全文
posted @ 2023-01-04 15:47 火军刀 阅读(114) 评论(0) 推荐(0)
摘要: 以下部分是常规的以行形式(纵向)展现的数据: SELECT cast(r.xmbm AS VARCHAR(20)) + ',' FROM ryk AS r WHERE r.subUnitCode IN('A46041','A46130','A46194','A46207') ORDER BY r.x 阅读全文
posted @ 2022-12-19 22:32 火军刀 阅读(1114) 评论(0) 推荐(0)
摘要: jQueryFun:http://www.jqueryfuns.com/FlatLab:http://thevectorlab.net/flatlab/index.html 阅读全文
posted @ 2022-11-12 12:36 火军刀 阅读(107) 评论(0) 推荐(0)
摘要: 安装MySQL时需要配置Microsoft Visual C++ Redistributable,直接下载对应版本,安装即可。 Microsoft Visual C++ Redistributable 2019x86: https://aka.ms/vs/16/release/VC_redist.x 阅读全文
posted @ 2022-11-05 12:02 火军刀 阅读(1505) 评论(0) 推荐(0)
摘要: 用nhibernate更新sql server中的decimal(18,6)类型的数据时,发现不论前端输入几位小数,保存到数据库后都只能保留5位小数,用profiler跟踪发现,在它自动生成的sql语句中数据类型一律被转为decimal(19,5),所以会导致只保留5位小数。 用了两天时间,寻找各种 阅读全文
posted @ 2022-10-12 15:12 火军刀 阅读(126) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 ··· 43 下一页