ok
I will fix in next patch version.
Thanks again.
hi
Please create a new question about your new case
Thanks.
hi burkay
Yes, we will add OpenIddictToken
to framework. I just make sure it works for you. : )
Can you test it?
Thanks.
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"
}.
hi
You can share the data with liming.ma@volosoft.com and https://wetransfer.com/
Thanks.
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
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