Check the docs before asking a question: https://abp.io/docs/latest Check the samples to see the basic tasks: https://abp.io/docs/latest/samples The exact solution to your question may have been answered before, and please first use the search on the homepage.
Provide us with the following info:
🧐 Hint: If you are using the ABP Studio, you can see all the information about your solution from the configuration window, which opens when you right-click on the solution and click on the Solution Configuration
button.
- Template: app
- Created ABP Studio Version: 0.9.26
- Current ABP Studio Version: 0.9.26
- Tiered: Yes
- Multi-Tenancy: No
- UI Framework: angular
- Theme: leptonx
- Theme Style: system
- Theme Menu Placement: side
- Run Install Libs: Yes
- Progressive Web App: No
- Run Progressive Web App Support: No
- Database Provider: ef
- Database Management System: postgresql
- Separate Tenant Schema: No
- Create Initial Migration: Yes
- Run Db Migrator: Yes
- Mobile Framework: maui
- Public Website: Yes
- Social Login: No
- Include Tests: Yes
- Kubernetes Configuration: Yes
- Distributed Event Bus: rabbitmq
- Use Local References: No
- Optional Modules:
- GDPR
- FileManagement
- TextTemplateManagement
- LanguageManagement
- AuditLogging
- Chat
- OpenIddictAdmin
- Create Command: abp new LaunchX -t app --tiered --ui-framework angular --mobile maui --database-provider ef --database-management-system postgresql --theme leptonx --public-website --without-cms-kit --dont-run-bundling --no-multi-tenancy --no-social-logins -no-saas -chat
- Exception message and full stack trace:
I used ABP Suite in the ABP Studio development environment, but failed to retrieve the entity from the imported ABP module(Volo.Abp.Account.Pro 9.1.1). Here are the relevant screenshots:
1 Answer(s)
-
0
Hi,
You can easily pick entities from modules while building one-to-many relation like this:
But while building many-to-many relations, there is no option for it. You'll go to
Advanced
tab and fill fields manually.Let's say you want to build a relation for IdentityUser located at here: https://github.com/abpframework/abp/blob/dev/modules/identity/src/Volo.Abp.Identity.Domain/Volo/Abp/Identity/IdentityUser.cs
Fill
Entity namespace
andEntity name
fields manually like below:If entities from modules cannot be loaded to that dropdown you can always use Advanced tab and fill information manually. There might be some reasons that prevents reading entities from modules such as compilation errors or project doesn't have
bin
&obj
folders. Make sure you build your project once, and make sure your project doesn't have any compilation error.