Hi,
Ok, I hope I can help you solve the problem quickly.
Could you provide the full steps to reproduce? thanks.
Hi,
I can reproduce the problem and will create an internal issue to fix it, BTW your ticket was refunded.
Hi,
Ok, I will try to reproduce the problem.
Hi,
When you create a new project, the ABP suite will build the project, try to restore libs, and create initial migration files. so yes, it will lock the file and take a while(not long)
You need to wait until these steps are finished, then you can open the solution in VS2022 and do anything.
Hi,
Could you share the steps to reproduce? thanks.
Hi,
We have a question for this before: https://support.abp.io/QA/Questions/3209/ABP-DbMigrator---Reverting-last-database-update-migration
Unfortunately, we won't be adding this feature.
Hi,
You can try this:
Install the
System.Data.SqlClientpackage version with 4.8.3
using (var transaction = new TransactionScope())
{
await productRepository.InsertAsync(new Product("Product1"));
await backgroundJobManager.EnqueueAsync(ProductJobArgs);
transaction.Complete();
}
Here is my test image:
Hi,
We create an internal issue for this and will check it.
Hi,
Your auth server is behind the proxy server, right?
The IdentityServer4 document mentioned this: https://identityserver4.readthedocs.io/en/aspnetcore1/topics/deployment.html
The solution is to use the ForwardedHeaders middleware and there is the document for this: https://learn.microsoft.com/en-us/aspnet/core/host-and-deploy/proxy-load-balancer?view=aspnetcore-6.0
Hi Is this work for you?
https://github.com/IdentityServer/IdentityServer4/issues/3309