Activities of "alper"

can you double check that you are running on 3.3.2. this was an old issue and must be fixed in 3.3.2

  • The ABP Framework is an open-source project. You can download the source-code from its GitHub repository

  • Only Business and Enterprise license types are allowed to download source-code

Download the source-code of the PRO and free modules

Method-1: ABP Suite

You can use APB Suite. Click the Modules menu item to find download links for each module. You can also add the module as a NuGet package or as a project reference.

See also https://docs.abp.io/en/commercial/latest/abp-suite/source-code

Method-2: ABP CLI

You can use the ABP CLI to download a module source-code. See how to get source via CLI.

Example usage of the module download via ABP CLI:

 abp get-source Volo.Account.Pro

Frequently used module names:

  • Volo.Account
  • Volo.AuditLogging
  • Volo.BackgroundJobs
  • Volo.Blogging
  • Volo.Docs
  • Volo.FeatureManagement
  • Volo.Identity
  • Volo.IdentityServer
  • Volo.PermissionManagement
  • Volo.SettingManagement
  • Volo.TenantManagement
  • Volo.Users
  • Volo.Docs.Admin
  • Volo.Account.Pro
  • Volo.AuditLogging.Ui
  • Volo.Identity.Pro
  • Volo.Identityserver.Ui
  • Volo.LanguageManagement
  • Volo.Saas
  • Volo.EmailManagement
  • Volo.LeptonTheme

LeptonX Theme source-code

To download the source code of the LeptonX Theme

abp get-source Volo.Abp.LeptonXTheme.Pro

For the old Lepton Theme source-code, use this code: abp get-source Volo.LeptonTheme


Angular packages source-code

To download the source-code of the Angular packages, download the corresponding module via abp get-source command. After downloading, you will find a folder called Angular. This folder contains the source-code of Angular packages.

and close your Visual Studio then delete all bin&obj folders

Answer

do you have typeof(AbpPermissionManagementEntityFrameworkCoreModule), in your DependsOn attribute in Host project

this is my test with 4.0.0 it works ... can you try to update to the latest

Answer

is this Suite generated page?

if you are trying to achieve something like this "adding a picture to the user", then you need to implement this manually, by adding a byte[] to the IdentityUser and showing it on the relavant UI's... this module is for managing general files without any entity relationship.

Answer

@shobhit can you update your project to v3.3.2?

disable MongoDB transactions to see if that works. do it in the ConfigureServices method of your Module class

Configure<AbpUnitOfWorkDefaultOptions>(options =>
{
  options.TransactionBehavior = UnitOfWorkTransactionBehavior.Disabled;
});

hi, we use EF Core, so sure you can have many to many relationship. This is not directly related to ABP but EF Core. See https://docs.microsoft.com/en-us/ef/core/modeling/relationships?tabs=fluent-api,fluent-api-simple-key,simple-key#many-to-many

Showing 1331 to 1340 of 1868 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 11, 2024, 11:11