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
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?