Why is class 'Elsa.EntityFrameworkCore.Modules.Management.Configurations' marked as internal #6363
Replies: 1 comment
|
In Elsa 3.3.0, Elsa's EF Core persistence features are built around separate If a single context is a hard requirement, you would need to own the entity mappings and migrations for the Elsa version you target, including its shadow/serialized properties and indexes; copying an internal configuration couples that context to Elsa internals. Please open a focused feature request if a public combined-context contract would be valuable. Relevant 3.3.0 source: https://github.com/elsa-workflows/elsa-core/blob/3.3.0/src/modules/Elsa.EntityFrameworkCore/Modules/Management/DbContext.cs and https://github.com/elsa-workflows/elsa-core/blob/3.3.0/src/modules/Elsa.EntityFrameworkCore/Modules/Management/Configurations.cs |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Hello, why is class 'Elsa.EntityFrameworkCore.Modules.Management.Configurations' marked as internal ?
(but class 'Elsa.EntityFrameworkCore.Modules.Runtime.Configurations' is public).
Elsa 3.3.0.
I would like to build a unified DbContext that includes Management entities, Runtime entities and my own entities, like this:
All reactions