Weβre excited to hear your feedback and improve how we plan upcoming modules and features for ABP!
Following a recent request, weβve created this thread to gather votes on which Application Modules or UI Themes youβd like us to prioritize next, as outlined in our roadmap π
π https://abp.io/docs/9.3/release-info/road-map#application-modules-ui-themes
We'll use this thread to help shape our upcoming roadmap priorities based on real community needs.
We know some items have been marked βPlannedβ for a long time. This is your chance to:
While we canβt always provide exact release dates, a high number of votes will directly impact our scheduling and planning.
Thanks for helping us build a better ABP for everyone!
β‘ Update ABP CLI , ABP Studio and ABP Suite
dotnet tool update -g Volo.Abp.Studio.Cli --version 0.9.24
abp suite update --version 9.1.0
π Blog post
πΌ Migration guide
βοΈ Feel free to report any bugs, issues, and problems.
To help developers find answers more quickly, we have collected all frequently asked questions into a single, easy-to-use FAQ index thread. Instead of searching through pinned items on the homepage, you can now browse organized categories based on your development needs.
See all FAQ labelled questions -> https://abp.io/support/questions?Sort=LastActivityDate-desc&TagNames=faq
What feature would you like to see in ABP Suite in the new version?
Continuation thread of https://abp.io/support/questions/6529/ABP-Suite-feature-request--2024
We are using Pomelo.EntityFrameworkCore.MySql
NuGet package in our MySQL provider package, which is Volo.Abp.EntityFrameworkCore.MySQL
. This package hasn't released a stable version for .NET 9 yet.
Therefore, the provider is unable to transform/process some SQL queries, we are closely following the stable 9.0.0 release of the Pomelo.EntityFrameworkCore.MySql package and we will update our provider when they release the stable version. (You can also follow the upgrade status from https://github.com/PomeloFoundation/Pomelo.EntityFrameworkCore.MySql/issues/1841, if you want)
When using EF Core 9 with MySQL in ABP-based projects, you may encounter SQL translation issues. One of the key problems is that certain queries involving parameterized collections fail to translate correctly.
To fix this problem, you can open your module class of the *.EntityFrameworkCore
project and configure the AbpDbContextOptions
as follows:
//...
public class MyProjectEntityFrameworkCoreModule : AbpModule
{
public override void ConfigureServices(ServiceConfigurationContext context)
{
//...
Configure<AbpDbContextOptions>(options =>
{
options.UseMySQL(builder =>
{
//add the following line π
builder.TranslateParameterizedCollectionsToConstants();
});
});
}
}
Using the TranslateParameterizedCollectionsToConstants()
option ensures that parameterized collections are translated into constants, preventing SQL translation errors.
β‘ Update ABP CLI , ABP Studio and ABP Suite
dotnet tool update -g Volo.Abp.Studio.Cli --version 0.9.11
abp suite update --version 9.0.0
π Blog post
πΌ Migration guide
βοΈ Feel free to report any bugs, issues, and problems.
β‘ Update ABP CLI and ABP Suite
dotnet tool update -g Volo.Abp.Studio.Cli --version 0.8.1
abp suite update --version 8.3.0
π Blog post
πΌ Migration guides
βοΈ Feel free to report any bugs, issues, and problems.
This is a test question!!! It will be deleted soon.
β‘ Update ABP CLI and ABP Suite
dotnet tool update -g Volo.Abp.Cli --prerelease
abp suite update --preview
π Blog post
π Commercial release logs
πΌ Migration guides
βοΈ Feel free to report any bugs, issues, and problems.
β‘ Update ABP CLI and ABP Suite
dotnet tool update -g Volo.Abp.Cli --prerelease
abp suite update --preview
π Blog post
π Commercial release logs
πΌ Migration guides
βοΈ Feel free to report any bugs, issues, and problems.