Ok
If the above statements are correct. then PublishAsync() seems to be the only option for me
Two options,
Hi,
@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;
});
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.
Configure<AbpDistributedEntityEventOptions>(options =>
{
options.AutoEventSelectors.AddAll();
});
Now you can see the records, but you need also to configure the inbox. otherwise your application will get stuck