Activities of "liangshiwei"

Hi,

Currently, ABP is unable to group by different namespaces. I will consider supporting it in the next version.

Hi,

As you know, the microservices solution needs to load data, permissions, users, tenants, etc. from different services. If the service is missing, the solution cannot work normally.

If you want to only dependency to one service, you need to add the functionality of all the other services to this one

Hi,

You can check the document: https://abp.io/docs/latest/solution-templates/layered-web-application/deployment/openiddict-deployment#update-dbmigrator

Hi,

Thanks for your feedback, we will check and fix it, you can manually close it in the Task Manager.

Hi,

We have no such module.

Hi,

We have upgraded to net9 and fixed these issues, but there was no redeployment.

You can try to download the source code: https://abp.io/api/download/samples/easy-crm

Hi,

Okay, please send to shiwei.liang@volosoft.com

HI, you can override the page alerts page

Create a Default.cshtml file under the Themes/LeptonX/Components/Common/PageAlerts folder in the authserver project.

@model Volo.Abp.AspNetCore.Mvc.UI.Alerts.AlertList
@if (Model.Any())
{
    <div id="AbpPageAlerts">
        @foreach (var alertMessage in Model)
        {
            alertMessage.Text = alertMessage.Text.Replace(".,", "."+Environment.NewLine);
            <abp-alert alert-type="@(alertMessage.Type)" style="white-space: pre-line" dismissible="@alertMessage.Dismissible">@if (alertMessage.Title != null) { <h4>@alertMessage.Title</h4> }@alertMessage.Text</abp-alert>
        }
    </div>
}

Hi,

Is there any error message? you can try set a breakpoint and check.

This is reasonable; I created an issue for discussion with the team.

Showing 191 to 200 of 6693 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.1.0-preview. Updated on November 04, 2025, 06:41