System.MissingMethodException on .NET 10, EF Core 10 with Elsa 3.5.3 #7373
Unanswered
Shreyaspednekarr
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am encountering a System.MissingMethodException when running Elsa 3.5.3 in a NET 10 projects using EF Core 10 packages
So I updated all Elsa packages to 3.6.0 but version 3.6.0 doesn’t exist for Elsa.EntityFrameworkCore, and expression packages (JavaScript, Liquid, CSharp). The highest available version for all packages is 3.5.3
but all the projects and packages in my solution are on NET 10
The System.MissingMethodException I’m seeing in SqliteQueryCompilationContext is a classic binary incompatibility issue. It occurs because the constructor signature for Relational Query Compilation Context (the base class) changed between EF Core 9 and EF Core 10, but since I my application is migrated to NET 10 and Elsa EF Core 3.5.3 is on NET 9, application is trying to mix these versions at runtime.
Please migrate all Elsa packages to NET 10 at the earliest and release.
Beta Was this translation helpful? Give feedback.
All reactions