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
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
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
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
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
do you have typeof(AbpPermissionManagementEntityFrameworkCoreModule),
in your DependsOn attribute in Host project
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.
@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