Activities of "liangshiwei"

You can use GRPC. see https://github.com/abpframework/abp-samples/tree/master/GrpcDemo

Hi @nick.pham-mwp,

Angular UI will be available in version 4.0.

Hi,

I used the rabbitmq samples: https://github.com/abpframework/abp-samples/tree/master/RabbitMqEventBus

It will publish an event every 10 seconds. I ran the program for more than an hour and everything worked fine.

Could you provide steps to reproduce or you can use the CLI to create a sample project ro reproduce this problem. thanks.

HI,

This has nothing to do with Feature check, You need to query twice when you are querying the book list. example:

public async Task<List<BookDto>> GetBooks()
{
      var result = new List<BookDto>();
      // get the host's books
      using(CurrentTenant.Change(null))
      {
             result.Add(await BookRepository.ToListAsync());
      }
      
      // get the tenant user's books
      result.Add(await BookRepository.ToListAsync());
}

Hi,

I think you just need to var bookStoreDbContext = (BookStoreDbContext)repository.GetDbContext();

Hi,

I made an exmaple for you: https://github.com/realLiangshiwei/Qa517. It integrates seamlessly with ABP.

See also: https://github.com/abpframework/abp-samples/tree/master/StoredProcedureDemo. ABP provide an example that explaining how to call stored procedures, views and functions

Hi

See https://stackoverflow.com/questions/36151800/asp-net-mvc-identity-securitystamp-signout-everywhere.

Add the following code to your web module, It will check the security stamp every 10 seconds and log out of the login session if it changes.

Configure<SecurityStampValidatorOptions>(options =>
{
    options.ValidationInterval = TimeSpan.FromSeconds(10);
});

Hi,

You need to custom the login page and page model. see: https://docs.abp.io/en/abp/2.4/How-To/Customize-Login-Page-MVC. The document is based on a free template, but the principle is the same.

I will check it out.

Hi,

What is service is idle, Is the container not started?

Showing 6201 to 6210 of 6693 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.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.