Hi,
See https://github.com/abpframework/abp/blob/dev/templates/module/aspnet-core/test/MyCompanyName.MyProjectName.HttpApi.Client.ConsoleTestApp/ClientDemoService.cs#L54
Hi,
See https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.Quartz/Volo/Abp/Quartz/AbpQuartzModule.cs#L69
You can get existing instances from the DI container
Hi,
Sorry, you can't do it.
Hi,
UserManagement is already to inherit AbpCrudPageBase
Hi,
Why it is generated as BIMS for the client also.
Maybe the client required BIMS
scope
Hi
Try:
@inherits Volo.Abp.Identity.Pro.Blazor.Pages.Identity.UserManagement
@attribute [Volo.Abp.DependencyInjection.ExposeServices(typeof(Volo.Abp.Identity.Pro.Blazor.Pages.Identity.UserManagement))]
@attribute [Volo.Abp.DependencyInjection.Dependency(ReplaceServices = true)]
<h3>TestUserManagement</h3>
Please reopen if still problem.
HI
there no change in current tanant as i loging with platform admin or abp admin
Could you share some codes or provide steps to reproduce it. thanks.
Try
[ExposeServices(typeof(LoginModel))]
public class MyIdentityServerSupportedLoginModel : IdentityServerSupportedLoginModel
{
public MyIdentityServerSupportedLoginModel(IAuthenticationSchemeProvider schemeProvider, IOptions<AbpAccountOptions> accountOptions, IIdentityServerInteractionService interaction, IClientStore clientStore, IEventService identityServerEvents, IOptions<IdentityOptions> identityOptions) : base(schemeProvider, accountOptions, interaction, clientStore, identityServerEvents, identityOptions)
{
}
public override Task<IActionResult> OnPostAsync(string action)
{
// check....
return base.OnPostAsync(action);
}
}
var users = (await _roleRepository.GetDbSetAsync()).Where(x => EF.Property<int>(x, "PropertyAdded") == 1).ToListAsync();
See
https://gist.github.com/realLiangshiwei/cf96030428f67a5e20c4770c1a5e56a8,
https://gist.github.com/realLiangshiwei/462dc4888a0590606c27a064c46d4918