Activities of "radhikashrotre"

  • ABP Framework version: v4.4
  • UI type: MVC
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): yes / no
  • Exception message and stack trace:
  • Steps to reproduce the issue:"

With version 4.4, EntityFrameworkCore.DbMigrations project has been removed and DbContexts are unified. You can check this community article to understand the circumstances under that. If you were migrated your application from 4.3 to 4.4 please apply the steps in the article to unify your db context.

Can you examine your db context class inherit from ISaasDbContext or not?

[ReplaceDbContext(typeof(IIdentityProDbContext))] 
[ReplaceDbContext(typeof(ISaasDbContext))] //ensure this line is exists 
[ConnectionStringName("Default")] 
public class MyDbContext :  
        AbpDbContext<MyDbContext>,  
        IIdentityProDbContext, 
        ISaasDbContext //ensure this line is exists 
{ 
    //... 
} 
  1. Yes, I have these lines of code in DBContext.
  2. I have used IdentityUser and IIdentityUserRepository to gather data for Users and OrganizationUnit with these I want to join based on condition my userdefined two entities.
  3. I have constructed a class where I have called IIdentityUserRepository, IdentityUser objects using Get method. Anything I need to change here.

Hi @radhikashrotre, what is your ABP Framework version?

ABP FW 4.4


  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): yes / no no
  • Exception message and stack trace: no
  • Steps to reproduce the issue:" no

I am trying to join abp entities with userdefined tables e.g Abpuser and AbpOrganizationUnit

Check the docs before asking a question: https://docs.abp.io/en/commercial/latest/ Check the samples, to see the basic tasks: https://docs.abp.io/en/commercial/latest/samples/index The exact solution to your question may have been answered before, please use the search on the homepage.

If you're creating a bug/problem report, please include followings:

  • ABP Framework version: vX.X.X
  • UI type: Angular / MVC / Blazor
  • DB provider: EF Core / MongoDB
  • Tiered (MVC) or Identity Server Separated (Angular): yes / no
  • Exception message and stack trace:
  • Steps to reproduce the issue:"
Showing 1 to 5 of 5 entries
Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11