Hi
I have two questions.
-
How can I add a reference to ABPUsers in my Person entity? I just wanted to create an extension to user account (i.e ABPUsers) for my application. So I thought to create a Person class with a foreign key reference to ABPUsers.
-
Can I add more fields into ABPUsers? If so, is that a good practice?
Kindly advise.
Thanks,
James
2 Answer(s)
-
0
Hi,
Yes you can do that.
In order to do that create a user class of your own like thispublic class User : AbpUser { .... }
and reference this entity in your Person entity.
In order to add new properties to it, you can read this document <a class="postlink" href="https://aspnetzero.com/Documents/Extending-Existing-Entities">https://aspnetzero.com/Documents/Extend ... g-Entities</a>.It's a good practice actually.
-
0
Thank you very much ismcagdas!!!