Activities of "liangshiwei"

This is the solution:

https://github.com/abpio/abp-commercial-docs/pull/592

Hi,

What database are you using?

Note that the specific SQL used to generate a value from a sequence is database-specific; the above example works on SQL Server but will fail on other databases. Consult your specific database's documentation for more information.

See: https://learn.microsoft.com/en-us/ef/core/modeling/sequences#basic-usage

: )

So, whether it's the public site (built from ABP suite) or the AuthServer project, both could serve as a 'host' for one or more blazor WASM applications?

I'm not sure. If a standard ASPNETCore application(without ABP) can do it, then ABP also can do it.

I will get an example project for you tomorrow to show you essentially what we're trying to do technically to supplement what I've already explained.

Ok.

much in the way that ABP's examples show the AuthServer project being used in the same manner

Are you talking about this? https://community.abp.io/posts/blazor-webassembly-asp.net-core-hosted-zbjvgrc9

What do you recommend as the host for one or more WASM applications using the ABP framework?

I think this is no different from the standard ASPNETCore application.

If you face any problems you can share a test project with me and I will check it. thanks. shiwei.liang@volosoft.com

Hi,

You can install the yarn(1.22.19) to restore packages in the CI.

Hi,

No, we don't have such an example and I don't recommend you use wasm as a public website. wasm often takes longer to load.

Can you be more specific in terms of exactly what in the red.css and bootstrap-red.css files need to change to make the button red like you show?

You can copy the light.css and bootstrap-light.css to wwwroot/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXTheme/side-menu/css/ folder and rename them.

Now you can see all the style source code and you can change it according to your needs, for example; I changed the color of a tag here

Also, once I get this figured out, I want to make this new theme the default theme. How is that accomplished via the

You can try this:

Configure<LeptonXThemeOptions>(options =>
{
    options.Styles.Add("red", 
        new LeptonXThemeStyle(
        LocalizableString.Create("Theme:Red"),
        "bi bi-circle-fill"));

    options.DefaultStyle = "red";
    
});

Hi,

You can check the source code: https://github.com/abpframework/abp/blob/dev/modules/permission-management/src/Volo.Abp.PermissionManagement.Blazor/Components/PermissionManagementModal.razor.cs#L227

The logic of the GetChildPermissions method is to get all sub-permissions according to the name convention.

The name convention is structured like this:

List
List.Full
List.FullLimited

BTW, you can custom if you want:

protected override void PermissionChanged(bool value, PermissionGroupDto permissionGroup, PermissionGrantInfoDto permission)
{
    SetPermissionGrant(permission, value);

    if (value)
    {
        SetParentPermissionGrant(permissionGroup, permission);
    }
    else if (value == false)
    {
        var childPermissions = GetMyChildPermissions(permissionGroup, permission);

        foreach (var childPermission in childPermissions)
        {
            SetPermissionGrant(childPermission, false);
        }
    }
}

private List<PermissionGrantInfoDto> GetMyChildPermissions(PermissionGroupDto permissionGroup, PermissionGrantInfoDto permission)
{
    // You can recursively query all sub-permissions here
}
Answer

Related: https://support.abp.io/QA/Questions/6204/windows-Authentication

You are trying to integrate Windows login, did you configure it correctly?

Showing 2921 to 2930 of 6692 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