dotnet core 3 support
See original GitHub issuedotnet core version: 3.0.0-preview5-19227-01
ef core version: 3.0.0-preview5.19227.1
Oracle.EntityFrameworkCore version: 2.19.0-beta4
in Startup.cs
services.AddDbContext<DbContext>(opt => opt.UseOracle("User Id=user1;Password=123456;Data Source=127.0.0.1:1521/ORCLPDB1"));
got an error when doing a simple query
An unhandled exception has occurred while executing the request.
System.TypeLoadException: Method 'PopulateDebugInfo' in type 'Oracle.EntityFrameworkCore.Infrastructure.Internal.OracleOptionsExtension' from assembly 'Oracle.EntityFrameworkCore, Version=2.0.19.0, Culture=neutral, PublicKeyToken=null' does not have an implementation.
Is this a Oracle.EntityFrameworkCore but? when will it support dotnet core 3.
I found a similar discussion about Devart.Data.Oracle
at https://forums.devart.com/viewtopic.php?t=36091
Issue Analytics
- State:
- Created 4 years ago
- Comments:17 (8 by maintainers)
Top Results From Across the Web
.NET and .NET Core official support policy
Long Term Support (LTS). LTS releases are supported for three years after the initial release. · Standard Term Support (STS). STS releases are...
Read more >Microsoft .NET and .NET Core - Microsoft Lifecycle
NET Core. Microsoft .NET and .NET Core follows the Modern Lifecycle Policy. Support dates are shown in the Pacific Time Zone (PT) -...
Read more >Microsoft .NET - endoflife.date
NET Core 3.1, these releases will happen every November and every other release will be LTS. LTS releases are supported for three years ......
Read more >Microsoft Announces End of Support Date for .NET Core 3.1
NET 5 and 6, will reach its end of support on December 13, 2022. “.NET Core 3.1 will reach [the] end of support...
Read more >Microsoft to End Support for .NET Core 3.1 in December 2022
The long-term-support (LTS) version 3.1 of Microsoft .NET Core Framework is slated to go out of support on December 13th, 2022.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Hi, I got the same issue and I found the following: https://www.nuget.org/packages/Oracle.EntityFrameworkCore/
Basically, this page shows the dependencies DLLs and versions. Microsoft.EntityFrameworkCore.Relational (>= 2.1.11 && < 3.0.0)
I updated from 3.1.0 to 2.2.6 of these packages and it worked nice: Microsoft.EntityFrameworkCore and; Microsoft.EntityFrameworkCore.Relational
Okay gotcha Thank You. If I am not wrong DIRECTORY NAME will be the path of tnsnames.ora file location right.