-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SQL Server Persitance Provider not working with EF Core 5 #694
Comments
That's not a .net5 issue, that's an EF Core 5 issue. You can still use EF Core 3 with .net5. |
I think the problem, like in my case, when I use .net5 and EF Core 5 in my application and then I add WorkflowCore.Persistence.SqlServer that has dependency on EF Core 3 but since I already have EF Core 5, it choose that and then error occurs. |
@danielgerlag it looks kinda same with #413 |
I had to migrate to net5.0 I found, that PropertyBuilder no longer contains a definition for UseSqlServerIdentityColumn. See also MS Docs
Severity Code Description Project File Line Suppression State
Error CS1061 'PropertyBuilder' does not contain a definition for 'UseSqlServerIdentityColumn' and no accessible extension method 'UseSqlServerIdentityColumn' accepting a first argument of type 'PropertyBuilder' could be found (are you missing a using directive or an assembly reference?) WorkflowCore.Persistence.SqlServer C:\GitHub\Workflow\workflow-core\src\providers\WorkflowCore.Persistence.SqlServer\SqlServerContext.cs 34 Active
The text was updated successfully, but these errors were encountered: