TrackableEntities.EF.Core 3.1 is now targeting .NET Standard 2.1 but EF 3.1 targets .NET Standard 2.0.
I can't use it anymore in a .NET 4.7.2 project.
Furthermore, I have a method not found exception using TrackableEntities.EF.Core 1.2.0 (targeting .NET Standard 2.0) and EF Core 3.1.
<Exception>
<ExceptionTypeName>System.MissingMethodException</ExceptionTypeName>
<Message>Method not found: 'Void Microsoft.EntityFrameworkCore.ChangeTracking.IEntityEntryGraphIterator.TraverseGraph(Microsoft.EntityFrameworkCore.ChangeTracking.EntityEntryGraphNode, !!0, System.Func`3<Microsoft.EntityFrameworkCore.ChangeTracking.EntityEntryGraphNode,!!0,Boolean>)'.</Message>
<Source>TrackableEntities.EF.Core</Source>
<StackTrace> at TrackableEntities.EF.Core.Internal.DbContextExtensionsInternal.TraverseGraph(DbContext context, Object item, Action`1 callback)
Is there a solution to this problem?
TrackableEntities.EF.Core 3.1 is now targeting .NET Standard 2.1 but EF 3.1 targets .NET Standard 2.0.
I can't use it anymore in a .NET 4.7.2 project.
Furthermore, I have a method not found exception using TrackableEntities.EF.Core 1.2.0 (targeting .NET Standard 2.0) and EF Core 3.1.
Is there a solution to this problem?