为什么 Devart 在尝试从数据库创建模型时不工作?
Why Devart is not working when trying to create models from database?
我将 Devart 与 Oracle 数据库 10g 和 Entity Framework Core 5 一起使用,我正在尝试使用 Scaffold-DbContext 从数据库创建模型:
dotnet ef dbcontext scaffold "User Id=proj1;Password=proj1;Data Source=proj.pr.local:1515;" Devart.Data.Oracle.EFCore -o Models -p Project1.csproj
但是我收到以下错误:
Unable to find provider assembly 'Devart.Data.Oracle.EFCore'. Ensure the name is correct and it's referenced by the project.
我已经使用 NuGet 包安装了 Devart.Data.Oracle.EFCore 9.14.1234。
为什么会出现此错误?
谢谢。
Devart.Data.Oracle.EFCore 是 NuGet 包的名称。
Devart.Data.Oracle.Entity.EFCore 是程序集的名称。
参考https://www.devart.com/dotconnect/oracle/docs/?EFCore-Database-First-NET-Core.html。
我将 Devart 与 Oracle 数据库 10g 和 Entity Framework Core 5 一起使用,我正在尝试使用 Scaffold-DbContext 从数据库创建模型:
dotnet ef dbcontext scaffold "User Id=proj1;Password=proj1;Data Source=proj.pr.local:1515;" Devart.Data.Oracle.EFCore -o Models -p Project1.csproj
但是我收到以下错误:
Unable to find provider assembly 'Devart.Data.Oracle.EFCore'. Ensure the name is correct and it's referenced by the project.
我已经使用 NuGet 包安装了 Devart.Data.Oracle.EFCore 9.14.1234。
为什么会出现此错误?
谢谢。
Devart.Data.Oracle.EFCore 是 NuGet 包的名称。
Devart.Data.Oracle.Entity.EFCore 是程序集的名称。
参考https://www.devart.com/dotconnect/oracle/docs/?EFCore-Database-First-NET-Core.html。