Activities of "liangshiwei"

Answer

I have no experience at ABP development

You can read the ABP document first: https://docs.abp.io/en/abp/latest, it will help you to understand ABP framework.

Answer

Hi,

We have an exmaple: https://github.com/abpframework/abp-samples/tree/master/BookStore-Modular

Hi,

I reproduced this problem using VS 2022, but it is a random occurrence. I have no idea yet, but I will continue to investigate

This problem does not occur with dotnet run command or Rider.

Can you try use dotnet run to test it?

Hi,

Can you check this: https://github.com/abpframework/abp/issues/8289?

Hi,

You can use the network path. see: https://docs.microsoft.com/en-us/dotnet/standard/io/file-path-formats#unc-paths

Hi,

.web and angular are for admins. only web.public for users

Hi,

You can custom, replace or delete styles if you need.

See:https://docs.abp.io/en/abp/latest/UI/AspNetCore/Bundling-Minification#bundle-contributors

For example:

public class MyStyleContributor : BundleContributor
{
    public override async Task ConfigureBundleAsync(BundleConfigurationContext context)
    {
        context.Files.RemoveAll(x => x.Contains("blazorise.bootstrap.css"));

        context.Files.ReplaceOne("/libs/css/a.css","/lib/css/b.css");

        context.Files.Add("/lib/css/my.css");
    }
}

Configure<AbpBundlingOptions>(options =>
{
    options
        .StyleBundles
        .Add(BlazorLeptonThemeBundles.Styles.Global, bundle =>
        {
            bundle
                .AddBaseBundles(BlazorStandardBundles.Styles.Global)
                .AddContributors(typeof(MyStyleContributor));
        });
});

You should use CSS isolation for your own components

Just want to know if abp allow to do this own module.

Of course you can,modularity is the core feature of ABP

Hi

what is the use case for angular app ? is it for admins ?

Yes, We current only provide web.public of MVC UI

HI,

Are you talking about custom database tables?

See: https://docs.abp.io/en/abp/4.4/Entity-Framework-Core#mapefcoredbcontext

Example:

ObjectExtensionManager.Instance.MapEfCoreDbContext<FileManagementDbContext>(b =>
{
    //....
});
Showing 5391 to 5400 of 6632 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
Do you need assistance from an ABP expert?
Schedule a Meeting
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v9.2.0-preview. Updated on March 25, 2025, 11:10