Hi @alper,
I create a property as in picture 1. I fill in the max and min fields. After registering, I update again and delete the max min fields. After click save button,ı get an error.
{
b.ToTable(ArgeConsts.DbTablePrefix + "Notes", ArgeConsts.DbSchema);
b.ConfigureByConvention();
b.Property(x => x.Title).HasColumnName(nameof(Note.Title));
b.HasOne<AppUser>().WithMany().HasForeignKey(x => x.AppUserId).IsRequired();
});
The navigation property that we created with suite does not create foreign keys in sql tables. We make the above arrangement to create a foreign key. Then we get the following error, while migrating.
b.HasOne <AppUser> () .WithMany (). HasForeignKey (x => x.AppUserId) .IsRequired (); If we create a migraiton without writing above the code, there is no problem.
Hi @gterdem, It's my fault. No problem.
Check the docs before asking a question: https://docs.abp.io/en/commercial/latest/ Check the samples, to see the basic tasks: https://docs.abp.io/en/commercial/latest/samples/index The exact solution to your question may have been answered before, please use the search on the homepage.
How can I hide the Admin menu on user basis? What scenario do I need to implement? Users log in without tenants.
Hi @alexander.nikonov I had the same problem too. Try clearing chrome cache.
Hi @maliming,
ABP Framework version: v3.3.1 UI type: Angular DB provider: EF Core Tiered (MVC) or Identity Server Seperated (Angular): no
I did the 4 items above. Is there anything I should do on the code side?
Also I get the following error in the log.
2021-01-05 11:58:08.789 +03:00 [ERR] Invalid Credentials LdapException: Invalid Credentials (49) Invalid Credentials LdapException: Server Message: 80090308: LdapErr: DSID-0C090446, comment: AcceptSecurityContext error, data 52e, v4563
How do I fill in the information in the image below. To fields other than server host and port?
Hi, Abp Suite version:v3.3.0 Client UI:Angular, I create an entity with the help of the suite and create angular ui. For example, its name is Department. I write a department specific service to the service file in the proxy folder of the department created with Suite. For example, its name is getDepartmentOfUser (). Then I use abp-suite again to create a Personnel entity. After creating the personnel entity, I see that the getDepartmanOfUser () service that I wrote to the department service has been deleted.
thanks for your comments.
Hi @alper,
could you understand the above situation?
Hi, Same situation with @DanielAndreasen. I updated the project, but the abp version is old.
Hi, Abp Suite version:v3.3.0 Client UI:Angular, I create an entity with the help of the suite and create angular ui. For example, its name is Department. I write a department specific service to the service file in the proxy folder of the department created with Suite. For example, its name is getDepartmentOfUser (). Then I use abp-suite again to create a Personnel entity. After creating the personnel entity, I see that the getDepartmanOfUser () service that I wrote to the department service has been deleted.
thanks for your comments.