Activities of "liangshiwei"

Hi,

The support shows that it is still a trial organization, that's why I thought you were a trial version.

What's your email, I will share the source code with you.

Hi,

Yes, It is available in 7.3.1.

Shared

What's your email?

Hi,

We don't provide source code for the trial version

Hi,

It's easy to do, you just need to inject the app service.

public class MyappMenuContributor : IMenuContributor
{
    private readonly IConfiguration _configuration;
    private readonly IIdentityUserAppService _userAppService;

    public MyappMenuContributor(IConfiguration configuration, IIdentityUserAppService userAppService)
    {
        _configuration = configuration;
        _userAppService = userAppService;
    }

    public async Task ConfigureMenuAsync(MenuConfigurationContext context)
    {
        var users = await _userAppService.GetListAsync(new GetIdentityUsersInput { MaxResultCount = 1000 });
    }
}

Configure<AbpNavigationOptions>(options =>
{
    options.MenuContributors.Add(new MyappMenuContributor(context.Services.GetConfiguration(), context.Services.GetRequiredService<IIdentityUserAppService>()));
});

Hi,

You can change the MaxProviderKeyLength and add a new migration file.

Hi,

I don't know what is the exact question, I can use the virtual file system to read XML files in the Blazor application.

Here is my code:

<?xml version="1.0" encoding="utf-8"?>
<Menu>
  <MenuItems>
    <MenuItem Text="Home" Icon="oi oi-home" NavigateTo="home" />
    <MenuItem Text="Counter" Icon="oi oi-plus" NavigateTo="counter" />
    <MenuItem Text="Fetch data" Icon="oi oi-list-rich" NavigateTo="fetchdata" />
  </MenuItems>
</Menu>

---------------

Configure<AbpVirtualFileSystemOptions>(options =>
{
    options.FileSets.AddEmbedded<MyappBlazorModule>(baseFolder: "Resources");
});


---------------

public partial class Index
{
    [Inject]
    public IVirtualFileProvider VirtualFileProvider { get; set; }
    
    private IFileInfo FileInfo { get; set; }

    protected override void OnInitialized()
    {
        FileInfo = VirtualFileProvider.GetFileInfo("/Myapp/Blazor/Resources/Menu.xml");
    }
}



---------------

<h4>
    @FileInfo.Name
    <br/>
    @FileInfo.ReadAsString()
</h4>

How do I load an XML file using the VirtualFileSystem or is there a better way where I can just reference the physical file directly?

Hi,

You can check the document to know How use the Virtual File System: https://docs.abp.io/en/abp/latest/Virtual-File-System

Hi,

No,But you can use any BI library that can work with aspnetcore/angular.

Or do you have a recommended BI library/tool?

Sorry, I don't have a library to recommend

Showing 3551 to 3560 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 December 17, 2025, 07:08
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.