Go to my github
摘要: https://www.cnblogs.com/ybb521/p/3210271.html 阅读全文
posted @ 2020-03-26 17:45 峡谷少爷 阅读(203) 评论(0) 推荐(0) 编辑
摘要: 首先,先建一个表,并添加一些数据,建表代码如下: If OBJECT_ID(N'Demo') Is Not Null Begin Drop Table Demo End Else Begin Create Table Demo( Area nvarchar(30), Name nvarchar(20 阅读全文
posted @ 2020-03-26 17:38 峡谷少爷 阅读(164) 评论(0) 推荐(0) 编辑
摘要: 前面提到了记录合并,有了合并需求肯定也会有分离需求,说到字符串分离,大家肯定会想到SPLIT函数,这个在.NET,Java和JS中都有函数,很可惜在SQL SERVER中没有,我们只能自己来写这么一个函数。 SET QUOTED_IDENTIFIER ON SET ANSI_NULLS ON GO 阅读全文
posted @ 2020-03-26 17:32 峡谷少爷 阅读(683) 评论(0) 推荐(0) 编辑
摘要: 文章标题:如何在ASP.NET Core中自定义Azure Storage File Provider作者:Lamond Lu地址:https://www.cnblogs.com/lwqlun/p/10406566.html项目源代码: https://github.com/lamondlu/Azu 阅读全文
posted @ 2020-03-26 11:52 峡谷少爷 阅读(228) 评论(0) 推荐(0) 编辑
摘要: 标题:从零开始实现ASP.NET Core MVC的插件式开发(六) - 如何加载插件引用。作者:Lamond Lu地址:https://www.cnblogs.com/lwqlun/p/11717254.html源代码:https://github.com/lamondlu/DynamicPlug 阅读全文
posted @ 2020-03-26 11:46 峡谷少爷 阅读(295) 评论(0) 推荐(0) 编辑
摘要: 标题:从零开始实现ASP.NET Core MVC的插件式开发(五) - 使用AssemblyLoadContext实现插件的升级和删除作者:Lamond Lu地址:https://www.cnblogs.com/lwqlun/p/11395828.html源代码:https://github.co 阅读全文
posted @ 2020-03-26 11:45 峡谷少爷 阅读(308) 评论(0) 推荐(0) 编辑
摘要: 标题:从零开始实现ASP.NET Core MVC的插件式开发(四) - 插件安装作者:Lamond Lu地址:https://www.cnblogs.com/lwqlun/p/11343141.html源代码:https://github.com/lamondlu/Mystique 前情回顾 从零 阅读全文
posted @ 2020-03-26 11:44 峡谷少爷 阅读(358) 评论(0) 推荐(0) 编辑
摘要: 标题:从零开始实现ASP.NET Core MVC的插件式开发(三) - 如何在运行时启用组件作者:Lamond Lu地址:https://www.cnblogs.com/lwqlun/p/11260750.html源代码:https://github.com/lamondlu/DynamicPlu 阅读全文
posted @ 2020-03-26 11:43 峡谷少爷 阅读(288) 评论(1) 推荐(0) 编辑
摘要: 标题:从零开始实现ASP.NET Core MVC的插件式开发(二) - 如何创建项目模板作者:Lamond Lu地址:https://www.cnblogs.com/lwqlun/p/11155666.html源代码:https://github.com/lamondlu/Mystique 在上一 阅读全文
posted @ 2020-03-26 11:41 峡谷少爷 阅读(212) 评论(0) 推荐(0) 编辑
摘要: 标题:从零开始实现ASP.NET Core MVC的插件式开发(一) - 使用Application Part动态加载控制器和视图作者:Lamond Lu地址:https://www.cnblogs.com/lwqlun/p/11137788.html源代码:https://github.com/l 阅读全文
posted @ 2020-03-26 11:39 峡谷少爷 阅读(412) 评论(2) 推荐(1) 编辑
摘要: CREATE PROCEDURE [dbo].[kytj_Base_Worker] WITH ENCRYPTION AS SELECT u.worker_number, u.worker_name, CONVERT(VARCHAR(8), u.Worker_qcrq, 112) Worker_qcr 阅读全文
posted @ 2020-03-26 08:58 峡谷少爷 阅读(567) 评论(0) 推荐(0) 编辑