InternalServerError;TypeLoadException:来自程序集''的类型''中的方法'',版本=''...实现

问题描述 投票:0回答:1

TypeLoadException:程序集“Microsoft.EntityFrameworkCore.Relational,Version=6.0.0.0,Culture=neutral,PublicKeyToken=adb9793829ddae60”中类型“Microsoft.EntityFrameworkCore.Storage.Internal.RelationalDatabaseFacadeDependencies”中的方法“get_QueryProvider”没有实现。 当我曾经编写这一段代码时:

using Microsoft.EntityFrameworkCore;
using apiGestor.Models;
namespace apiGestor.Context
{
    public class AppDbContext :DbContext
    {
        public AppDbContext(DbContextOptions<AppDbContext> options): base(options){}
        public DbSet<Gestores_Bd> FolsBy { get; set; }
    }
}

我尝试将我的 CDUD 与 SQLSERVER 连接并仅显示数据库表中的数据

asp.net .net asp.net-mvc asp.net-core crud
1个回答
0
投票

当我的项目使用

Microsoft.EntityFrameworkCore 6.0.21
但我的单元测试使用
Microsoft.EntityFrameworkCore.InMemory 7.0.0

时,我在单元测试中遇到此错误

🤦u200d♂️

© www.soinside.com 2019 - 2024. All rights reserved.