Activities of "maliming"

Answer

ok

I will fix in next patch version.

Thanks again.

Answer

hi

Please create a new question about your new case

Thanks.

Answer

hi burkay

Yes, we will add OpenIddictToken to framework. I just make sure it works for you. : )

Can you test it?

Thanks.

Answer

hi

The Logs.txt says:

Client validation failed because 'https://localhost:44364/signin-oidc' was not a valid redirect_uri for LulaCreditAssessment_Web.

Make sure the LulaCreditAssessment_Web's RedirectUris contains the https://localhost:44364/signin-oidc

{
  "client_id": "LulaCreditAssessment_Web",
  "redirect_uri": "https://localhost:44364/signin-oidc",
  "response_type": "code id_token",
  "scope": "openid profile roles email phone LulaCreditAssessment",
  "response_mode": "form_post",
  "nonce": "63879181284471l",
  "state": "CfDJ8KitIyzDz",
  "x-client-SKU": "ID_NET9_0",
  "x-client-ver": "8.3.0.0"
}.
Answer

hi

You can share the data with liming.ma@volosoft.com and https://wetransfer.com/

Thanks.

Answer

hi

. I also restarted the redis server afterwards.

Can you try to clear the data in Redis?

Please share the row data of your OpenIddictApplication Please share the logs.txt during this exception.

liming.ma@volosoft.com Thanks

hi

Try this

book1.Author = await _personRepository.GetAsync(book1.AuthorId);
book2.Author = await _personRepository.GetAsync(book2.AuthorId);
public class BookAppService : ApplicationService, IBookAppService
{
    private readonly IRepository<Book, Guid> _repository;
    private readonly IRepository<Person, Guid> _personRepository;

    public BookAppService(IRepository<Book, Guid> repository, IRepository<Person, Guid> personRepository)
    {
        _repository = repository;
        _personRepository = personRepository;
    }

    public async Task<string> DoStuffAsync()
    {
        // Create two books
        var book1 = new Book { Name = "Book 1", AuthorId = AbpAngularSandboxConsts.Person1Id };
        var book2 = new Book { Name = "Book 1", AuthorId = AbpAngularSandboxConsts.Person1Id };

        // Populate the navigation properties, which would would be used by subsequent domain logic  prior to saving
        book1.Author = await _personRepository.GetAsync(book1.AuthorId);
        book2.Author = await _personRepository.GetAsync(book2.AuthorId);

        // At this point, both books have their Author referencing different objects, although they are the same entity in the database

        // Save the books.
        // This will fail with the following exception:
        // System.InvalidOperationException: The instance of entity type 'Person' cannot be tracked because another
        // instance with the same key value for {'Id'} is already being tracked. When attaching existing entities,
        // ensure that only one entity instance with a given key value is attached.
        // Consider using 'DbContextOptionsBuilder.EnableSensitiveDataLogging' to see the conflicting key values.
        await _repository.InsertManyAsync([book1, book2], true);

        return "Success";
    }
}

hi

hi

Can you check and change the path in /wwwroot/blazor-global-styles.css?

We will update the template code.

Thanks.

hi

Yes, the 9.2.0-rc.1, 9.1.1

Showing 1 to 10 of 9225 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
Do you need assistance from an ABP expert?
Schedule a Meeting
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v9.2.0-preview. Updated on March 25, 2025, 11:10