03 2018 档案
摘要:自定义token的验证类 using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetC
阅读全文
摘要:首先415的官方解释是:对于当前请求的方法和所请求的资源,请求中提交的实体并不是服务器中所支持的格式,因此请求被拒绝。 也就是说我所准备的数据格式并不是后台代码使用的数据格式 后台代码如下 using System; using System.Collections.Generic; using S
阅读全文
摘要:新增配置文件 { "Logging": { "IncludeScopes": false, "Debug": { "LogLevel": { "Default": "Warning" } }, "Console": { "LogLevel": { "Default": "Warning" } } }
阅读全文
摘要:在startup中添加授权相关的管道 using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Builder
阅读全文
摘要:预防万一先备份数据库,然后找到当前集合的数据库进行如下操作select *From tbl_Workspace where Computer='WIEYAN-Y4-PC'//先找出工作区的WorkspaceIdselect *From tbl_pendingchange where WorkspaceId='340000001'//找出当前工作组未迁出的文件 delete tbl_pend...
阅读全文
摘要:命令行的配置 var settings = new Dictionary<string, string>{ { "name","cyao"}, {"age","18"} }; var builder = new ConfigurationBuilder() .AddInMemoryCollectio
阅读全文
摘要:安装IIs对 netcore 的支持 https://docs.microsoft.com/en-us/aspnet/core/fundamentals/servers/aspnet-core-module?tabs=aspnetcore2x https://dotnet.microsoft.com
阅读全文