1 2 3 4 5 ··· 33 下一页
摘要: 如:在debug模式下方法不做权限检查 #if DEBUG[AllowAnonymous]#endif [Authorize] [HttpGet("GetData")] #if DEBUG [AllowAnonymous] #endif public string GetData() { retur 阅读全文
posted @ 2024-11-25 16:31 流年sugar 阅读(2) 评论(0) 推荐(0) 编辑
摘要: VS中打开调试属性 对话框中,命令参数中输入环境参数“Development”,关闭窗口即可生成launchSettings.json文件 阅读全文
posted @ 2024-11-25 16:27 流年sugar 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 异常: 程序在修改了非数据库相关的代码后发布进行部分覆盖,抛出异常,本次并未覆盖数据库相关的dll 查询解决方案都给出的是,将本地的Microsoft.Data.SqlClient.dll拷贝到发布处覆盖,这种方式不行 本次原因: 之前发布是目标运行时选的“可移植”,部署地方还是保持可移植,而本次因 阅读全文
posted @ 2024-11-12 16:29 流年sugar 阅读(39) 评论(0) 推荐(0) 编辑
摘要: ServiceLifetime几种注入方式的解释: Transient:每次请求服务时,都会创建一个新实例,这种生命周期适合用于轻量级服务(如Repository和ApplicationService服务)。 Scoped:为每个HTTP请求创建一个实例,生命周期将横贯整次请求。 SingleTon 阅读全文
posted @ 2024-11-07 16:38 流年sugar 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 异常 解决方案: 数据库连接增加“TrustServerCertificate=True;” 完整连接 Server=.;Database=TestDb;User Id=sa;Password=aaaaa;Encrypt=True;TrustServerCertificate=True; Trust 阅读全文
posted @ 2024-11-06 15:54 流年sugar 阅读(62) 评论(0) 推荐(0) 编辑
摘要: 数据库:SqlServer为例 安装包: 数据库连接 DbContext public class TestDbContext:DbContext { public TestDbContext(DbContextOptions<TestDbContext> options) : base(optio 阅读全文
posted @ 2024-11-06 15:03 流年sugar 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 接口:IRepository<T> 实现:BaseRepository<T> builder.Services.AddTransient(typeof(IRepository<>),typeof(BaseRepository<>)); 阅读全文
posted @ 2024-11-06 14:25 流年sugar 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 异常: 代码: 读取到的Positon是空的 解决: 在调用Positon前调用context.Request.EnableBuffering() EnableBuffering() 表示允许http请求中的body重复读取,如果不加这个方法当数据在验签过程中读取出来之后到了控制器时,控制器中获取到 阅读全文
posted @ 2024-10-25 16:05 流年sugar 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 1.添加Cookie身份验证方案 services.AddAuthentication(option =>{ option.DefaultAuthenticateScheme = CookieAuthenticationDefaults.AuthenticationScheme; option.De 阅读全文
posted @ 2024-10-21 17:05 流年sugar 阅读(18) 评论(0) 推荐(0) 编辑
摘要: Windows下通过Python安装coscmd,执行coscmd命令时报错 原因:本地Python装的是3.13.0版本,这个版本不支持SafeConfigParser这个类,源代码改为使用RawConfigParser 解决:到Python的安装路径下找到cos_cmd.py文件将SafeCon 阅读全文
posted @ 2024-10-11 14:28 流年sugar 阅读(50) 评论(0) 推荐(0) 编辑
1 2 3 4 5 ··· 33 下一页