
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.AccountVolo.AuditLoggingVolo.BackgroundJobsVolo.BloggingVolo.DocsVolo.FeatureManagementVolo.IdentityVolo.IdentityServerVolo.PermissionManagementVolo.SettingManagementVolo.TenantManagementVolo.UsersVolo.Docs.AdminVolo.Account.ProVolo.AuditLogging.UiVolo.Identity.ProVolo.Identityserver.UiVolo.LanguageManagementVolo.SaasVolo.EmailManagementVolo.LeptonThemeTo download the source code of the LeptonX Theme
abp get-source Volo.Abp.LeptonXTheme
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
hi,
you can see Event Bus system. By Event Bus, you can register to your card insert event and the subscriber class can send the data to the client via SignalR.
and I can share a sample code to init SignalR connection in the Angular side
import * as signalR from '@microsoft/signalr';
private initSignalR(currentUser: ApplicationConfiguration.CurrentUser) {
if (this.conectedUserId === currentUser.id) return;
if (this.connection) this.connection.stop();
this.connection = new signalR.HubConnectionBuilder()
.withUrl(`${this.signalRUrl}/signalr-hubs/chat`, {
accessTokenFactory: () => this.oAuthService.getAccessToken(),
})
.build();
this.connection.on('ReceiveMessage', this.handleMessage);
this.connection
.start()
.then(() => {
this.conectedUserId = currentUser.id;
})
.catch((err) => {
return console.error(err.toString());
});
}
Also see the usage from https://www.npmjs.com/package/@microsoft/signalr