Activities of "liangshiwei"

Hi,

Why you can't access IIdentityRoleRepository? Can you explain the structure of your project

Answer

HI,

Can I check it remotely? shiwei.liang@volosoft.com

Hi, @viswajwalith

Yes we can have a remote metting. shiwei.liang@volosoft.com

Hi,

See : https://github.com/abpframework/abp/pull/7669

You need to install SettingManagement module's all package.

Hi,

For module project, try:

 public class MyProjectNameBlazorHostBundleContributor : IBundleContributor
{
    public void AddScripts(BundleContext context)
    {

    }

    public void AddStyles(BundleContext context)
    {
        context.Add("main.css", true);
    }
}

Open appsettings.json and add the following:

"AbpCli": {
    "Bundle": {
      "Mode": "BundleAndMinify", /* Options: None, Bundle, BundleAndMinify */
      "Name": "global",
      "Parameters": {
        "LeptonTheme.Style": "Style1", /* Options: Style1, Style2... Style6 */
        "LeptonTheme.ChangeStyleDynamically": "true"
      }
    }
  }

Then run abp bundle command in the Blazor.Host folder to update resource references.

Hi,

I think you can manually create a new uow: https://docs.abp.io/en/abp/latest/Unit-Of-Work#begin-a-new-unit-of-work

It took 5.1 minutes to display the successful login

Did you try again? I don't think it will be so slow

Hi,

See: https://github.com/abpframework/abp/pull/9117

For now, you can create MyAwsBlobNamingNormalizer to replace the AwsBlobNamingNormalizer

Hi,

See https://docs.abp.io/en/abp/latest/Blob-Storing-Aws#configuration

try:

options.Containers.ConfigureDefault(container =>
{
    container.UseAws(Aws =>
    {
        //...
        Aws.CreateContainerIfNotExists = true;
    });
});

Try search users.

Showing 5861 to 5870 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 16, 2025, 10:35