0
michaelmurphy5209 created
- ABP Framework version: 8.0.3
- UI Type: Angular
- Database System: SQL Server
- Tiered (for MVC) or Auth Server Separated (for Angular): no
- Exception message and full stack trace:
- Steps to reproduce the issue:
Using the abp suite I am creating an entity and no abp tables are available: example: abpUser; please let me know what I am doing incorrectly. thanks.
Here is the simple example of my sql table CREATE TABLE ProjectSponsor ( ProjectSponsorId INT IDENTITY(1,1) PRIMARY KEY, AbpUserId INT NOT NULL, IsActive BIT NOT NULL DEFAULT 1, CONSTRAINT FK_ProjectSponsor_AbpUser FOREIGN KEY (AbpUserId) REFERENCES AbpUser(AbpUserId) );
1 Answer(s)
-
0
Hello,
please check https://docs.abp.io/en/commercial/latest/abp-suite/generating-crud-page#step-by-step-creating-a-navigation-property-with-1-to-many-relat
Thanks,