Activities of "mohammedalqaisi"

  • ABP Framework version: v8.3.1
  • UI Type: Angular
  • Database System: EF Core ( MySQL)
  • Auth Server Separated (for Angular): yes
  • Steps to reproduce the issue:

Given the following entity configurations:

builder.Entity<Employee>(b =>
{
    b.ConfigureByConvention();
	b.HasOne(x => x.Course).WithMany().HasForeignKey(x => x.CourseId);
});

builder.Entity< Course >(b =>
{

});

When the CourseId associated with an Employee is changed, the PublishEventsForTrackedEntity feature in the DbContext does not trigger a change event for the Employee entity, even though the Employee entity is effectively modified.

This behavior appears to be inconsistent, as changes to the Employee should ideally trigger the corresponding event.

Question
  • ABP Framework version: v8.3.1
  • UI Type: Angular
  • Database System: EF Core ( MySQL)
  • Auth Server Separated (for Angular): yes
  • Exception message and full stack trace:
  • Steps to reproduce the issue:

  • ABP Framework version: v7.3.0
  • UI Type: Angular
  • Database System: EF Core (MySQL)
  • Tiered (for MVC) or Auth Server Separated (for Angular): Auth Server Separated
  • Exception message and full stack trace:
  • Steps to reproduce the issue:

Follow the steps in the https://docs.abp.io/en/abp/7.3/UI/Angular/Component-Replacement to replace PersonalSettingsComponent the below

  1. Create new component name PersonalSettingsComponent
  2. Add the component to declarations in AppModule
  3. using ReplaceableComponentsService in the **AppComponent ** i add the below

this.replaceableComponents.add({ component: PersonalSettingsComponent, key: eAccountComponents.PersonalSettings, });

but there is nothing change in the profile setting tab.

  • ABP Framework version: v6.0.0
  • UI Type: Angular
  • Database System: EF Core SQL Server
  • Auth Server Separated: yes
  • Steps to reproduce the issue:
    • Create a project name MyCompany.MyProject
    • Using a Abp Suite add new module name MyCompany.Framework.Finance
    • Add the newly created module to Abp Suite
    • Using Crud page generator add new Entity the Suite create the entity successfully but didn't generate the angular files

below the config from the suite appSettings.json

Note: When adding the newly created module from the suite the AngularSolutionRootPath value is **null **, UiFramework=2 ,UiFrameworkName="MVC"

{
    "IsDotnetEfCoreToolInstalled": true,
    "Solutions": [
        {
            "AbpVersion": "6.0.0",
            "ActiveDate": "2023-09-23T02:48:04.8084703+03:00",
            "AngularSolutionRootPath": "D:\\_Source\\Repos\\MyCompany.MyProject\\angular",
            "ApplicationContractsExists": true,
            "ApplicationContractsProjectDirectory": "D:\\_Source\\Repos\\MyCompany.MyProject\\aspnet-core\\src\\MyCompany.MyProject.Application.Contracts",
            "ApplicationProjectDirectory": "D:\\_Source\\Repos\\MyCompany.MyProject\\aspnet-core\\src\\MyCompany.MyProject.Application",
            "ApplicationTestsProjectDirectory": "D:\\_Source\\Repos\\MyCompany.MyProject\\aspnet-core\\test\\MyCompany.MyProject.Application.Tests",
            "BlazorProjectDirectory": null,
            "DatabaseProvider": 1,
            "DatabaseProviderName": "EntityFrameworkCore",
            "DbContextFilePath": "D:\\_Source\\Repos\\MyCompany.MyProject\\aspnet-core\\src\\MyCompany.MyProject.EntityFrameworkCore\\EntityFrameworkCore\\MyProjectDbContext.cs",
            "DbContextModelCreatingExtensionsFilePath": "D:\\_Source\\Repos\\MyCompany.MyProject\\aspnet-core\\src\\MyCompany.MyProject.EntityFrameworkCore\\EntityFrameworkCore\\MyProjectDbContext.cs",
            "DefaultNamespace": "MyCompany.MyProject",
            "DefaultNamespaceAsCamelCase": "myCompany.myproject",
            "DomainProjectDirectory": "D:\\_Source\\Repos\\MyCompany.MyProject\\aspnet-core\\src\\MyCompany.MyProject.Domain",
            "DomainSharedProjectDirectory": "D:\\_Source\\Repos\\MyCompany.MyProject\\aspnet-core\\src\\MyCompany.MyProject.Domain.Shared",
            "EntityFrameworkCoreDbMigrationsProjectDirectory": "D:\\_Source\\Repos\\MyCompany.MyProject\\aspnet-core\\src\\MyCompany.MyProject.EntityFrameworkCore",
            "EntityFrameworkCoreProjectDirectory": "D:\\_Source\\Repos\\MyCompany.MyProject\\aspnet-core\\src\\MyCompany.MyProject.EntityFrameworkCore",
            "EntityFrameworkCoreTestsProjectDirectory": "D:\\_Source\\Repos\\MyCompany.MyProject\\aspnet-core\\test\\MyCompany.MyProject.EntityFrameworkCore.Tests",
            "HttpApiHostProjectDirectory": "D:\\_Source\\Repos\\MyCompany.MyProject\\aspnet-core\\src\\MyCompany.MyProject.HttpApi.Host",
            "HttpApiProjectDirectory": "D:\\_Source\\Repos\\MyCompany.MyProject\\aspnet-core\\src\\MyCompany.MyProject.HttpApi",
            "Id": "68caa486-a030-4773-ab6d-b4a32047d08e",
            "IsTieredArchitecture": true,
            "MigrationsMigrationsDbContext": "MyProjectDbContext",
            "MigratorCsprojFileName": "MyCompany.MyProject.DbMigrator.csproj",
            "MigratorProjectDirectory": "D:\\_Source\\Repos\\MyCompany.MyProject\\aspnet-core\\src\\MyCompany.MyProject.DbMigrator",
            "MigratorProjectExists": true,
            "MongoDbProjectDirectory": null,
            "MongoDbTestsProjectDirectory": null,
            "Name": "MyCompany.MyProject",
            "NolayerProjectDirectory": null,
            "OnlyProjectName": "MyProject",
            "Path": "D:\\_Source\\Repos\\MyCompany.MyProject\\aspnet-core\\MyCompany.MyProject.sln",
            "ProjectNameWithCompanyName": "MyCompany.MyProject",
            "ProjectTemplateType": 1,
            "RootProjectDirectory": "D:\\_Source\\Repos\\MyCompany.MyProject\\aspnet-core",
            "SrcFolderDirectory": "D:\\_Source\\Repos\\MyCompany.MyProject\\aspnet-core\\src",
            "StartupProjectDirectory": "D:\\_Source\\Repos\\MyCompany.MyProject\\aspnet-core\\src\\MyCompany.MyProject.HttpApi.Host",
            "StartupProjectName": "MyCompany.MyProject.HttpApi.Host",
            "TenantDbContextFilePath": null,
            "TenantMigrationsMigrationsDbContext": "MyProjectTenantDbContext",
            "TestBaseProjectDirectory": "D:\\_Source\\Repos\\MyCompany.MyProject\\aspnet-core\\test\\MyCompany.MyProject.TestBase",
            "TestFolderDirectory": "D:\\_Source\\Repos\\MyCompany.MyProject\\aspnet-core\\test",
            "UiFramework": 3,
            "UiFrameworkName": "Angular",
            "UpdateDatabaseMethod": 1,
            "WebProjectDirectory": null
        },
        {
            "AbpVersion": "6.0.0",
            "ActiveDate": "2023-09-25T09:55:40.588693+03:00",
            "AngularSolutionRootPath": "D:\\_Source\\Repos\\MyCompany.MyProject\\angular\\projects\\dynamic-entities",
            "ApplicationContractsExists": true,
            "ApplicationContractsProjectDirectory": "D:\\_Source\\Repos\\MyCompany.MyProject\\aspnet-core\\modules\\MyCompany.Framework.DynamicEntities\\src\\MyCompany.Framework.DynamicEntities.Application.Contracts",
            "ApplicationProjectDirectory": "D:\\_Source\\Repos\\MyCompany.MyProject\\aspnet-core\\modules\\MyCompany.Framework.DynamicEntities\\src\\MyCompany.Framework.DynamicEntities.Application",
            "ApplicationTestsProjectDirectory": "D:\\_Source\\Repos\\MyCompany.MyProject\\aspnet-core\\modules\\MyCompany.Framework.DynamicEntities\\test\\MyCompany.Framework.DynamicEntities.Application.Tests",
            "BlazorProjectDirectory": null,
            "DatabaseProvider": 1,
            "DatabaseProviderName": "EntityFrameworkCore",
            "DbContextFilePath": "D:\\_Source\\Repos\\MyCompany.MyProject\\aspnet-core\\modules\\MyCompany.Framework.DynamicEntities\\src\\MyCompany.Framework.DynamicEntities.EntityFrameworkCore\\EntityFrameworkCore\\DynamicEntitiesDbContext.cs",
            "DbContextModelCreatingExtensionsFilePath": "D:\\_Source\\Repos\\MyCompany.MyProject\\aspnet-core\\modules\\MyCompany.Framework.DynamicEntities\\src\\MyCompany.Framework.DynamicEntities.EntityFrameworkCore\\EntityFrameworkCore\\DynamicEntitiesDbContextModelCreatingExtensions.cs",
            "DefaultNamespace": "MyCompany.Framework.DynamicEntities",
            "DefaultNamespaceAsCamelCase": "myCompany.framework.dynamicEntities",
            "DomainProjectDirectory": "D:\\_Source\\Repos\\MyCompany.MyProject\\aspnet-core\\modules\\MyCompany.Framework.DynamicEntities\\src\\MyCompany.Framework.DynamicEntities.Domain",
            "DomainSharedProjectDirectory": "D:\\_Source\\Repos\\MyCompany.MyProject\\aspnet-core\\modules\\MyCompany.Framework.DynamicEntities\\src\\MyCompany.Framework.DynamicEntities.Domain.Shared",
            "EntityFrameworkCoreDbMigrationsProjectDirectory": "D:\\_Source\\Repos\\MyCompany.MyProject\\aspnet-core\\modules\\MyCompany.Framework.DynamicEntities\\src\\MyCompany.Framework.DynamicEntities.EntityFrameworkCore",
            "EntityFrameworkCoreProjectDirectory": "D:\\_Source\\Repos\\MyCompany.MyProject\\aspnet-core\\modules\\MyCompany.Framework.DynamicEntities\\src\\MyCompany.Framework.DynamicEntities.EntityFrameworkCore",
            "EntityFrameworkCoreTestsProjectDirectory": "D:\\_Source\\Repos\\MyCompany.MyProject\\aspnet-core\\modules\\MyCompany.Framework.DynamicEntities\\test\\MyCompany.Framework.DynamicEntities.EntityFrameworkCore.Tests",
            "HttpApiHostProjectDirectory": null,
            "HttpApiProjectDirectory": "D:\\_Source\\Repos\\MyCompany.MyProject\\aspnet-core\\modules\\MyCompany.Framework.DynamicEntities\\src\\MyCompany.Framework.DynamicEntities.HttpApi",
            "Id": "08f9b6ec-1341-4586-b00c-27765e6187a1",
            "IsTieredArchitecture": false,
            "MigrationsMigrationsDbContext": "DynamicEntitiesMigrationsDbContext",
            "MigratorCsprojFileName": "MyCompany.Framework.DynamicEntities.DbMigrator.csproj",
            "MigratorProjectDirectory": null,
            "MigratorProjectExists": false,
            "MongoDbProjectDirectory": null,
            "MongoDbTestsProjectDirectory": null,
            "Name": "MyCompany.Framework.DynamicEntities",
            "NolayerProjectDirectory": null,
            "OnlyProjectName": "DynamicEntities",
            "Path": "D:\\_Source\\Repos\\MyCompany.MyProject\\aspnet-core\\modules\\MyCompany.Framework.DynamicEntities\\MyCompany.Framework.DynamicEntities.sln",
            "ProjectNameWithCompanyName": "MyCompany.Framework.DynamicEntities",
            "ProjectTemplateType": 2,
            "RootProjectDirectory": "D:\\_Source\\Repos\\MyCompany.MyProject\\aspnet-core\\modules\\MyCompany.Framework.DynamicEntities",
            "SrcFolderDirectory": "D:\\_Source\\Repos\\MyCompany.MyProject\\aspnet-core\\modules\\MyCompany.Framework.DynamicEntities\\src",
            "StartupProjectDirectory": null,
            "StartupProjectName": null,
            "TenantDbContextFilePath": null,
            "TenantMigrationsMigrationsDbContext": "DynamicEntitiesTenantMigrationsDbContext",
            "TestBaseProjectDirectory": "D:\\_Source\\Repos\\MyCompany.MyProject\\aspnet-core\\modules\\MyCompany.Framework.DynamicEntities\\test\\MyCompany.Framework.DynamicEntities.TestBase",
            "TestFolderDirectory": "D:\\_Source\\Repos\\MyCompany.MyProject\\aspnet-core\\modules\\MyCompany.Framework.DynamicEntities\\test",
            "UiFramework": 3,
            "UiFrameworkName": "Angular",
            "UpdateDatabaseMethod": 1,
            "WebProjectDirectory": null
        }
    ]
}
Question
  • ABP Framework version: v5.3.1
  • UI type: Angular
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): Identity Server Separated

I follow the steps from this URL: https://docs.abp.io/en/commercial/latest/themes/lepton-x/commercial/angular to install LeptonX Pro Theme

  • Q1: If I completed those steps is that mean I install the LeptonX Pro Theme / not the LeptonX Lite Theme?
  • Q2: I read somewhere that there is a theme customizer/editor to customize the LeptonX Pro Theme where can I find it?
Showing 1 to 5 of 5 entries
Made with ❤️ on ABP v9.2.0-preview. Updated on January 16, 2025, 11:47