摘要:
异常 解决方案: 数据库连接增加“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<>)); 阅读全文