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 连接并仅显示数据库表中的数据
当我的项目使用
Microsoft.EntityFrameworkCore 6.0.21
但我的单元测试使用 Microsoft.EntityFrameworkCore.InMemory 7.0.0
时,我在单元测试中遇到此错误
🤦u200d♂️