Activities of "maliming"

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

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

Great. We also use it in theme layout.

: )

hi

Can you share a test project with your custom code with liming.ma@volosoft.com?

Thanks

We will add password login in the next studio CLI.

abp login maliming -p *** --password

Thanks. : )

Showing 2311 to 2320 of 11531 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 December 17, 2025, 07:08
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.