Activities of "EngincanV"

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

βœ… What to Do:

  • Vote for the feature/module you need most by liking πŸ‘ the related comment.
  • Can’t find your desired feature? Just comment below with the module name or idea.

We'll use this thread to help shape our upcoming roadmap priorities based on real community needs.

❗ Why This Matters:

We know some items have been marked β€œPlanned” for a long time. This is your chance to:

  • Tell us what you need most
  • Influence the prioritization
  • Help us deliver what brings real value to your projects

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

  • https://abp.io/community/articles/abp-platform-9.1-rc-has-been-released-wws5l00k
  • https://abp.io/community/articles/abp.io-platform-9.1-final-has-been-released-h96a56qa

πŸ”Ό Migration guide

  • https://abp.io/docs/9.1/release-info/migration-guides/abp-9-1

✏️ 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.

FAQs


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

What is the problem?

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.

How to fix this problem?

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.


✍️ You can read this article for further information: https://dev.to/engincanv/mysql-with-ef-core-9-in-abp-avoiding-translation-issues-1il1

⚑ 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

  • https://abp.io/blog/announcing-abp-9-0-release-candidate
  • https://abp.io/blog/abp-9-0-stable-release-with-dotnet-9-0

πŸ”Ό Migration guide

  • https://abp.io/docs/9.0/release-info/migration-guides/abp-9-0

✏️ 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

  • https://abp.io/blog/announcing-abp-8-3-release-candidate
  • https://abp.io/blog/announcing-abp-8-3-stable-release

πŸ”Ό Migration guides

  • https://abp.io/docs/8.3/release-info/migration-guides/abp-8-3

✏️ Feel free to report any bugs, issues, and problems.

Question

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

  • https://blog.abp.io/abp/announcing-abp-8-2-release-candidate

πŸ“˜ Commercial release logs

  • https://docs.abp.io/en/commercial/8.2/release-notes
  • https://commercial.abp.io/releases/

πŸ”Ό Migration guides

  • https://docs.abp.io/en/abp/8.2/Migration-Guides/Abp-8_2
  • https://docs.abp.io/en/commercial/8.2/migration-guides/v8_2

✏️ 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

  • https://blog.abp.io/abp/announcing-abp-8-1-release-candidate

πŸ“˜ Commercial release logs

  • https://docs.abp.io/en/commercial/8.1/release-notes
  • https://commercial.abp.io/releases/

πŸ”Ό Migration guides

  • https://docs.abp.io/en/abp/8.1/Migration-Guides/Abp-8_1
  • https://docs.abp.io/en/commercial/8.1/migration-guides/v8_1

✏️ Feel free to report any bugs, issues, and problems.

Showing 1 to 10 of 12 entries
Learn More, Pay Less
33% OFF
All Trainings!
Get Your Deal
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❀️ on ABP v10.0.0-preview. Updated on September 12, 2025, 10:20