Oleg Ufaev
Oleg Ufaev
I agree that UseElasticApm shouldn't rely on static fields and static API should be deprecated. We already have an issue with integration tests in our Web application that uses APM...
@RicoSuter Is there any plan to implement DataAnnotations support for TypeScript client? I think it would be convenient to be able to use this metadata in the TypeScript client.
While the problem looks pretty simple, unfortunately, I don't know the FluentMigrator code well enough to suggest a specific fix.
We had the same problem in ASP.NET Core application in .NET 6 project, when upgrading the AspNetCore.HealthChecks.Oracle nuget package from version 6.x to version 7.x Currently, the AspNetCore.HealthChecks.Oracle package version...
According to PostgreSQL documentation (https://www.postgresql.org/docs/15/ddl-schemas.html), the default value of search_path is `"$user", public`. The database administrator can change the value of this parameter according to the strategies described in section...
We too had problems with the NSwag CLI when upgrading from NSwag v13.20.0 to NSwag v14.0.2 We are running the NSwag CLI in Windows operating system, and our project is...
> According to https://github.com/RicoSuter/NSwag/issues/4524#issue-1914136979, .NET 6 isn't supported in NSwag 14. I've been limiting use of NSwag 14 to projects that support .NET 7 or later because of this. @KirkMunroSagent,...
@RicoSuter, please, could you pay attention to this issue? Currently our workflow for regenerating clients via the NSwag CLI is completely broken on Windows. There is a workaround that I...
@keithf4 you're right, PostgreSQL 12+ gets the tablespace from the parent table, but only if we use `CREATE TABLE ... PARTITION OF ..` command and directly mention parent table in...
### Example ``` CREATE TABLE public.my_table ( date timestamptz NOT NULL ) PARTITION BY RANGE (date) TABLESPACE my_tablespace; SELECT partman.create_parent( p_parent_table => 'public.my_table' , p_control => 'date' , p_interval =>...