You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is kinda orthogonal to #4854 #5005 added EFCore.BulkExtensions.MIT which is a very heavy dependency, most of the new dependencies are from it (all the db related packages).
Which aside from bloating the app with unused assemblies, also caused the following issue:
error CS0121: The call is ambiguous between the following methods or properties: 'Microsoft.EntityFrameworkCore.SqlServerPropertyExtensions.GetValueGenerationStrategy(Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty)' and 'Microsoft.EntityFrameworkCore.NpgsqlPropertyExtensions.GetValueGenerationStrategy(Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty)'
The text was updated successfully, but these errors were encountered:
It seems like you are referring to a specific issue with the Elsa Workflows library related to the addition of the EFCore.BulkExtensions.MIT package, which has introduced a number of new dependencies, particularly database-related ones. This could potentially be an issue if the added dependencies are causing conflicts, increasing the size of deployments, or introducing unwanted transitive dependencies into your project.
To address this concern, you may want to engage with the maintainers of the Elsa Workflows project directly, typically through their GitHub issues page. You can open a new issue or comment on an existing one if it's related to your concern. Provide details about how the new dependencies are affecting your project and ask if there are plans to reduce the dependency footprint or if alternative solutions are being considered.
If you are looking for a way to manage dependencies more effectively in your project, you might consider options such as:
Using dependency management tools to exclude specific transitive dependencies.
Looking for alternative packages that have fewer dependencies.
Contributing to the project by suggesting or implementing improvements.
Remember to check the project's documentation and GitHub issues for any updates or discussions related to dependency management.
Suchiman
changed the title
EFCore.BulkExtensions is a vefry heavy dependency
EFCore.BulkExtensions is a very heavy dependency
Mar 29, 2024
This is kinda orthogonal to #4854
#5005 added EFCore.BulkExtensions.MIT which is a very heavy dependency, most of the new dependencies are from it (all the db related packages).
Which aside from bloating the app with unused assemblies, also caused the following issue:
The text was updated successfully, but these errors were encountered: