Activities of "gvnuysal"

Answer

Hi @alper,

  1. 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.

  2. How to create an entity with navigation property only?

{
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.

  • ABP Framework version: v3.3.1
  • UI type: Angular
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Seperated (Angular): no
  • Exception message and stack trace:
  • Steps to reproduce the issue:

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.

Answer

Hi support, I updated the Abp Suite with the new version.

After logging in to the Suite

Then when I run suite, I get the error in the picture.

Hi @maliming,

ABP Framework version: v3.3.1 UI type: Angular DB provider: EF Core Tiered (MVC) or Identity Server Seperated (Angular): no

  • Allow to enable/disable LDAP login by a setting (using the setting management system).
  • Define settings for LDAP options (using the setting management system).
  • Create the UI to arrange settings, on the Account tab of the setting page
  • Create a "feature" to enable/disable LDAP login by tenant/edition.

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?

my ldap info.

Answer

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?

Answer

Hi, Same situation with @DanielAndreasen. I updated the project, but the abp version is old.

Answer

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 @alkaabi I had the same problem too. my solution was as follows In IdentityServerClientRedirectUris I changed the redirect url address.I also changed the ClientUri information in the IdentityServerClients table. I typed the address of my iis client address.

Showing 41 to 50 of 81 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.1.0-preview. Updated on October 30, 2025, 06:33