Can I add a link to the "Organizations" entity in IdentityUser? And how to do it? I read the documentation. I managed to add string and enum properties. How and where to declare a variable on the essence of "Organizations"?
user.AddOrUpdateProperty <???> ("Organization")
- **ABP Framework version: 2.8.0
- UI type: MVC
- Tiered (MVC) or Identity Server Seperated (Angular): no
7 Answer(s)
-
0
Are you talk about foreign key?
Please see https://github.com/abpframework/abp/issues/3959
-
0
Yes, something similar as in the link
-
0
Currently the entity extension system does not seem to support foreign key configuration, it was in the 2.9 milestone.
-
0
Hi, Here is an example that may help you : https://github.com/abpframework/abp-samples/tree/master/DocumentationSamples/CustomApplicationModules
-
0
Hello! I have a problem. I have entity "Employee" add dependency with AppUser using ABP Suite Navigation property: AppUserDTO created in ApplicationAutoMapperProfile () added
CreateMap <AppUser, AppUserDto> (). Ignore (x => x.ExtraProperties);
but on creation it throws the following error: An example was taken from the topic: https://support.abp.io/QA/Questions/150/How-To-Create-a-Help-Desk-Ticket-Entity
-
0
Hi,
It has nothing to do with Automapper, It related to ef core.
I see you are trying to add
AppUser
navigation property forEmployee
entity, Currently cannot complete this work using suite. You can refer the example. In this example, I addedAppUser
navigation property forTest
entity. -
0
check out https://community.abp.io/articles/abp-suite-how-to-add-the-user-entity-as-a-navigation-property-of-another-entity-furp75ex if you still cannot manage, reopen this question.