摘要:
异常: 程序在修改了非数据库相关的代码后发布进行部分覆盖,抛出异常,本次并未覆盖数据库相关的dll 查询解决方案都给出的是,将本地的Microsoft.Data.SqlClient.dll拷贝到发布处覆盖,这种方式不行 本次原因: 之前发布是目标运行时选的“可移植”,部署地方还是保持可移植,而本次因 阅读全文
摘要:
ServiceLifetime几种注入方式的解释: Transient:每次请求服务时,都会创建一个新实例,这种生命周期适合用于轻量级服务(如Repository和ApplicationService服务)。 Scoped:为每个HTTP请求创建一个实例,生命周期将横贯整次请求。 SingleTon 阅读全文
摘要:
异常 解决方案: 数据库连接增加“TrustServerCertificate=True;” 完整连接 Server=.;Database=TestDb;User Id=sa;Password=aaaaa;Encrypt=True;TrustServerCertificate=True; Trust 阅读全文
摘要:
数据库:SqlServer为例 安装包: 数据库连接 DbContext public class TestDbContext:DbContext { public TestDbContext(DbContextOptions<TestDbContext> options) : base(optio 阅读全文
摘要:
接口:IRepository<T> 实现:BaseRepository<T> builder.Services.AddTransient(typeof(IRepository<>),typeof(BaseRepository<>)); 阅读全文
摘要:
异常: 代码: 读取到的Positon是空的 解决: 在调用Positon前调用context.Request.EnableBuffering() EnableBuffering() 表示允许http请求中的body重复读取,如果不加这个方法当数据在验签过程中读取出来之后到了控制器时,控制器中获取到 阅读全文
摘要:
1.添加Cookie身份验证方案 services.AddAuthentication(option =>{ option.DefaultAuthenticateScheme = CookieAuthenticationDefaults.AuthenticationScheme; option.De 阅读全文
摘要:
Windows下通过Python安装coscmd,执行coscmd命令时报错 原因:本地Python装的是3.13.0版本,这个版本不支持SafeConfigParser这个类,源代码改为使用RawConfigParser 解决:到Python的安装路径下找到cos_cmd.py文件将SafeCon 阅读全文
摘要:
现象: 原因:Net Core以后默认缺失中文字符集 解决方法 安装包System.Text.Encoding.CodePages 程序入口Program.cs中注入字符 Encoding.RegisterProvider(CodePagesEncodingProvider.Instance); 参 阅读全文
摘要:
若访问项目文件wwwroot以外的其他静态文件使用如下方式访问 1.配置文件中配置路径(appsetting) "App": { "ServerRootAddress": "https://localhost:44301/", "ClientRootAddress": "https://localh 阅读全文