maliming
maliming
hi This seems an angular issue. Can you try another URL format? `http://{0}-ids.mydomain.com:44316/` to `http://{0}.ids.mydomain.com:44316/`
Let's confirm the problem first, then we will fix it.
hi You can try with that: ```cs app.UseSwagger(options => { options.PreSerializeFilters.Add((swaggerDoc, httpReq) => { var currentTenant = httpReq.HttpContext.RequestServices.GetRequiredService(); if (currentTenant.IsAvailable) { foreach (var securityScheme in swaggerDoc.Components.SecuritySchemes) { securityScheme.Value.Flows.AuthorizationCode.AuthorizationUrl = new...
hi Please try to reproduce the problem with minimum code, Thanks
We have upgraded to 12. https://github.com/abpframework/abp/pull/13626/commits/cf3d090c4f3ce2785d1e3256b6b02afe53a794aa
hi Please add your code to the test project and reshare it. Thanks.
hi I think this is an EF Core-related issue. It's fixed on [9.0.0-preview1](https://github.com/dotnet/efcore/milestone/189) https://github.com/dotnet/efcore/issues/22921
hi @puschie286 A temporary solution ```cs private static SqliteConnection CreateDatabaseAndGetConnection() { var connection = new AbpSqliteConnection("Data Source=:memory:"); connection.Open(); var options = new DbContextOptionsBuilder() .UseSqlite(connection) .Options; using (var context = new...
I copied their latest code. This means that EF Core didn't fix the problem at all.
Our unit tests are concurrent, but sqlite may have a problem with that. We can have the unit tests run sequentially in our project rather than concurrently, but it's best...