Activities of "liangshiwei"

Have you applied the latest code? you can check it.

Toolbar

The Toolbar will rendered by ContentTabToolbar

breadcrumbItems

Yes, I removed the breadcrumbItems from layout, It is in the storage of routing data, you can show it if you need.

Answer

:)

Answer

You can replace version with VersionOverride of the module source code

Answer

Hi,

The problem was fixed: https://github.com/abpframework/abp/issues/18565

Hi,

How should we check that if we have one redis ?

You can use the distributed cache to set some test data and read it:

public class TestCacheItem
{
    public string Value { get; set; }
}

public class TestCacheAppService : ApplicationService, ITestCacheAppService
{
    private readonly IDistributedCache<TestCacheItem> _cache;

    public TestCacheAppService(IDistributedCache<TestCacheItem> cache)
    {
        _cache = cache;
    }

    public Task SetCacheAsync(string key, string value)
    {
        _cache.Set(key, new TestCacheItem { Value = value }, new DistributedCacheEntryOptions
        {
            AbsoluteExpirationRelativeToNow = TimeSpan.FromMinutes(5)
        });
        return Task.CompletedTask;
    }
    
    public async Task<string?> GetCacheAsync(string key)
    {
        var item = await _cache.GetAsync(key);
        return item?.Value;
    }
}

Is your Redis server running in a docker container or you are using Amazon ElastiCache for Redis Could you please share the dockerfile or docker-compose file and application log file? thanks

Hi,

I have checked but didn't find anything.

I could not reproduce the problem in my local.

Could you provide the full steps to reproduce? I will check it. thanks

Hi,

No such guide, and the app is not a module. This is a sample project using this library.

You can refer to it.

And the Owl.GeneralTree is a library to help you develop tree entities. It provides some practical methods, such as adding deletions and moving tree nodes.

不过也有一个别的问题,

你可以暂时使用 ProjectManager 做为枚举类的命名空间

abp suite 生成的代码, 把 Enum.GetValues 改为 System.Enum.GetValues 应该就可以正常编译了

这里已经有 using system了。 可能是命名空间冲突,你可以把你的文件夹改成 Domain/Enums, 并且更新一下枚举类的命名空间

Showing 2641 to 2650 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.