Activities of "liangshiwei"

ok

Ok

If the above statements are correct. then PublishAsync() seems to be the only option for me

Two options,

  • Subscribe to local events instead of distributed events for int primary key type entities.
  • Publishing events manually via PublishAsync()

Hi,

  1. Add @addTagHelper *, Syncfusion.EJ2 to all _ViewImports.cshtml file 2:
Configure<AbpAntiForgeryOptions>(options =>
{
    options.AutoValidateFilter = type => !type.FullName!.Contains("AzureBlobManagerController");
});

Configure<MvcOptions>(options =>
{
    options.SuppressImplicitRequiredAttributeForNonNullableReferenceTypes = true;
});

The home page is almost empty, I didn't see any code about syncfusion.

Hi,

I can run the project without any problem, can you explain it in detail? thanks.

An exception occurred while iterating over the results of a query for context type 'Inventory.Location.EntityFrameworkCore.LocationDbContext'. Microsoft.Data.SqlClient.SqlException (0x80131904): A transport-level error has occurred when receiving results from the server. (provider: Session Provider, error: 19 - Physical connection is not usable)

It seems like a problem with SQLServer server, Can you check if your database is available?

BTW, please remove MultipleActiveResultSets=true from the connection string and try again.

You can check the possible solutions through Stackoverflow: https://www.google.com/search?q=Session+Provider,+error:+19+-+Physical+connection+is+not+usable+site:stackoverflow.com&sca_esv=562631641&sxsrf=AB5stBgTK6JcsoYTNzXjy6T0y2ufl13HQg:1693878429576&sa=X&ved=2ahUKEwiTntnwrJKBAxUWr1YBHcOGAwcQrQIoBHoECBMQBQ&biw=1920&bih=857&dpr=2

Hi,

Please change the repo to private, because it contains your license key.

Hi,

Can you share the full logs? thanks.

Another difference I just noticed between this solution we are having issues with and the other one for a different application is that we have an entity with navigation properties. Do you think that might be related to this issue?

I'm not sure. but I don't think it should be relevant.

In the meantime, I'll try to create a new solution using CLI, add the missing entities without navigation properties this time and see how that goes.

Ok.

Hi,

I checked the project you provided. Because it does not configure any event bus, it uses LocalDistributedEventBus by default.

The LocalDistributedEventBus will not use the outbox, It will publish the event directly.

  • First, you need to Enable for all entities:
Configure<AbpDistributedEntityEventOptions>(options =>
{
    options.AutoEventSelectors.AddAll();
});
  • Configure a provider RabbitMQ&Kafka...

Now you can see the records, but you need also to configure the inbox. otherwise your application will get stuck

Showing 3381 to 3390 of 6692 entries
Learn More, Pay Less
33% OFF
All Trainings!
Get Your Deal
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.0.0-preview. Updated on September 15, 2025, 14:41