Activities of "liangshiwei"

Hi,

You can check it. It still works.

ok

Hi,

There is an example: https://github.com/abpframework/abp-samples/tree/master/DomainTenantResolver

Can you share the full logs?

Hi,

there is no IncomingEventInfo entity. You may want to update the IncomingEventRecord

You can try:


protected IDbContextProvider<YourDbContext> DbContextProvider { get; }

internal async Task IncomingEventInfoMarkAsProcessed(IncomingEventInfo incomingEvent, InboxConfig inboxConfig)
{
    .....
    var dbContext = await DbContextProvider.GetDbContextAsync();
    await dbContext.IncomingEvents.Where(x => x.Id == messageId).ExecuteUpdateAsync(....);

    await eventInbox.MarkAsProcessedAsync(messageId);
}

Sorry, Unfortunately you need to wait for the next patch version

Hi,

I don't know much about your solution structure and user cases.

I would suggest that services not depend on each other, you can consider refactoring the structure.

I can't add the contract from Service 1 to Service 2. I tried to call my HttpClient from the Domain, but I can't check permissions and still have a 401 issue.

You need to add the current user's access_token to the request header

You can make a copy of an existing Host Project, rename it, and then add it to the solution.

Update OpenIddictDataSeedContributor to add a new scope.

Update ConfigureAuthentication to change the Audience to scope value

Answer

No,

If you want, you need to manually initialize Autocomplete

Answer

Here is the logic, you can check it.

https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared/wwwroot/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js#L78

Showing 1871 to 1880 of 6693 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