hi
That means you can't debug the DLL. Sorry for that.
hi
Please add me to your repository,
https://github.com/maliming
hi
https://docs.abp.io/en/commercial/latest/modules/identity/ldap#customize-built-in-services
hi
What are code changes in the console app?
hi
This will be fixed in 6.0
public virtual async Task DeleteAsync(Edition edition)
{
var tenants = await TenantRepository.GetListAsync(editionId: edition.Id);
if (tenants.Any())
{
throw new UnableDeleteEditionException(edition.DisplayName);
}
await EditionRepository.DeleteAsync(edition);
}
You can use the IAbpApplicationConfigurationAppService
and get the ApplicationConfigurationDto
Permissions and other info will exist in the DTO,
hi
I realize you don't need to check permissions in WPF, The AppService
will check permissions automatically.
Also no longer need the AbpAspNetCoreMvcClientModule
You only need to use the app services to call the method.