Hi,
It will fixed in version 7.4.2
, there are other bugs in this patch version that are being solved. After all bugs are fixed, we will release the version. so there is no clear time, but the priority of bugs is the highest, and we will release it as soon as possible.
Hi,
For example:
var redis = await ConnectionMultiplexer.ConnectAsync(Configuration["Redis:Configuration"]!);
foreach (var endPoint in redis.GetEndPoints())
{
var keys = redis.GetServer(endPoint).Keys(pattern: "*ApplicationConfiguration*").ToArray();
await redis.GetDatabase().KeyDeleteAsync(keys.ToArray());
}
If our fluent validation rules were also on the Dto and not just the domain object would the app service automatic validation also apply those rules? Is duplicating the rules from the domain in that way recommended so we don't have to explicitly call await _objectValidator.ValidateAsync(entity);?
Yes, and validate DTO is the recommended way.
ABP will automatically find this class and associate with the CreateUpdateBookDto on object validation.
https://docs.abp.io/en/abp/latest/FluentValidation#using-the-fluentvalidation
Hi,
Can you share a test project with me? I will check it. my email is shiwei.liang@volosoft.com
Hi @balessi75
All CSS files are loaded immediately in the lepton theme, which is different from Leptonx theme.
This may be the limitation of Blazor server.
Higher latency usually exists. Every user interaction involves a network hop.
https://learn.microsoft.com/en-us/aspnet/core/blazor/hosting-models?view=aspnetcore-7.0#blazor-server
Hi,
You can consider call the UnitOfWorkManager.Current.RollbackAsync();
method.