Activities of "maliming"

hi

This only works for MVC with no tiered project.

var isPersistent = (await HttpContext.AuthenticateAsync(IdentityConstants.ApplicationScheme))?.Properties?.IsPersistent ?? false;
await SignInManager.SignOutAsync();
using (CurrentTenant.Change(user2.TenantId))
{
    var user2 = await UserManager.GetByIdAsync(user2.Id.Value);
    await SignInManager.SignInAsync(user2, isPersistent);
}

HI

You should load the SiteData navigation property when querying the SubnetDataModel. Then the Automapper will works.

https://docs.abp.io/en/abp/latest/Entity-Framework-Core#eager-loading-load-with-details

hi

We have a document and test sample of LDAP, Can you check?

https://docs.abp.io/en/commercial/4.3/modules/account/ldap https://github.com/abpframework/abp-samples/blob/master/AbpLdapSample/AbpLdapSample/Program.cs

hi joe@tronactive.com

I want to redirect a user to the actual login page https://localhost:44343/Account/Login if they are not logged in. Not the home page.

How to reproduce this?

hi

Did you want to show the page alerts?

https://docs.abp.io/en/abp/latest/UI/AspNetCore/Page-Alerts https://github.com/abpframework/abp/blob/dev/modules/account/src/Volo.Abp.Account.Web/Pages/Account/Register.cshtml.cs#L101

hi selinkoykiran

If entity does't implement the IMultiTenant abp will switch to Host side. This is by design.

public static bool IsMultiTenant(Type type)
{
    return typeof(IMultiTenant).IsAssignableFrom(type);
}

Answer

hi BernardoTeixeira

Please refer to the module template document.

https://docs.abp.io/en/commercial/latest/startup-templates/module/creating-a-new-solution https://docs.abp.io/en/commercial/latest/startup-templates/module/solution-structure

hi raif

EfCoreRepository does not know the include() info by default.

You need to specify it manually.

Please refer to the implementation of the Identity module: https://github.com/abpframework/abp/blob/dev/modules/identity/src/Volo.Abp.Identity.EntityFrameworkCore/Volo/Abp/Identity/EntityFrameworkCore/EfCoreIdentityRoleRepository.cs#L86 https://github.com/abpframework/abp/blob/dev/modules/identity/src/Volo.Abp.Identity.EntityFrameworkCore/Volo/Abp/Identity/EntityFrameworkCore/IdentityEfCoreQueryableExtensions.cs#L8

These components are not commonly used, and there is no documentation yet.

Not yet.

Showing 10071 to 10080 of 10645 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.0.0-preview. Updated on September 12, 2025, 10:20