当前位置:   article > 正文

.net6使用EfCore模型驱动创建数据库时报错A connection was successfully established with the server, but then an erro

a connection was successfully established with the server, but then an error

报错内容:A connection was successfully established with the server, but then an error occurred during the login process. (provider: SSL Provider, error: 0 - 证书链是由不受信任的颁发机构颁发的。)

问题分析

数据库版本:SQL Server2014
visualstudio版本:2022
数据库创建采用模型驱动
写好eitity类,在配置DbContext时,代码如下:


```csharp
using Microsoft.EntityFrameworkCore;

namespace ShuDaKang.Entity
{
    /// <summary>
    /// 用于建立实体类和 数据库表连接上下文
    /// </summary>
    public class MyDbContext : DbContext
    {
        public DbSet<Activity> Activitys { get; set; } //对应Activity实体类
       
        //重写 对要链接的数据库进行配置
        protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
        {
            //数据库地址
            string connStr = "Server=.;Database=shudakang;User=Administrator ;Password= ;Trusted_Connection=True;MultipleActiveResultSets=true";
            optionsBuilder.UseSqlServer(connStr);           
        }

        //重写 模型创建 指定程序集
        protected override void OnModelCreating(ModelBuilder modelBuilder)
        {
            base.OnModelCreating(modelBuilder);
            //加载 当前程序集中所有实现了IEntityTypeConfiguration接口的类
            modelBuilder.ApplyConfigurationsFromAssembly(this.GetType().Assembly);
        }
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30

创建Migration

 Add-Migration CreateActivityModel
  • 1

迁移数据库

Update Migration
  • 1

报错:

A connection was successfully established with the server, but then an error occurred during the login process. (provider: SSL Provider, error: 0 - 证书链是由不受信任的颁发机构颁发的。)
  • 1

机翻:已成功与服务器建立连接,但在登录过程中发生错误。(提供程序:SSL提供程序,错误:0-证书链是由不受信任的颁发机构颁发的。)

排错

这是数据库连接字符串的问题,但是安装sqlServer2014时采用windows验证身份验证(我Windows10 系统时没有设置登录密码的)或者SQL Server身份验证。

在数据库连接字符串中添加登录信息

连接字符串改成如下:

string connStr = "Server=.;Database=shudakang;Encrypt=True;Trusted_Connection=True;TrustServerCertificate=True;MultipleActiveResultSets=true";
  • 1
添加了Encrypt=True;Trusted_Connection=True;TrustServerCertificate=True;
  • 1

至此,update-database 数据库迁移成功!!!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/601807
推荐阅读
相关标签
  

闽ICP备14008679号