Dmitry Zhavoronkov

Results 11 comments of Dmitry Zhavoronkov

After short debug session I found that the exception is throwed when one of the old migrations is applyed. In the migration I have: ```C# migrationBuilder.AddColumn( name: "RepeatableSurveyRuleIds", table: "Patients",...

Here is the reproduction: https://github.com/Rudomitori/npgsql_3074 If you checkout to the `dotnet_7` branch and launch the app, it works as expected. Or if you try to execute the `dotnet ef migrations...

Prettier also formats this way ```js await Promise.all([ queryClient.invalidateQueries(getDoctorProfileInfoQueryKey()), queryClient.invalidateQueries(getStudyListQueryKey()), ]); ```

When you type such parameters you more likely get code that looks as in the input sample. At least, In Rider it's so

It gets even worse if you call several methods in chain **Input**: ```C# var fillingProgress = calculator.Calculate( """ { "TextField": "", "NumberField": "", "DateRangeField": "", "TimeField": "", "RadioGroupField": "", "DropdownField":...

Some minimal API samples from the [Microsoft's documentation](https://learn.microsoft.com/en-us/aspnet/core/tutorials/min-web-api?view=aspnetcore-8.0&tabs=visual-studio#add-the-api-code) ```C# app.MapPost("/todoitems", async (Todo todo, TodoDb db) => { db.Todos.Add(todo); await db.SaveChangesAsync(); return Results.Created($"/todoitems/{todo.Id}", todo); }); app.MapPut("/todoitems/{id}", async (int id, Todo inputTodo,...

@eladcandroid, Can you provide the "Swagger" specification and the command line arguments that you use?

@synasapmob What is the definition of `BaseResult`? What CLI arguments do you use?

I faced a bug that looks similar to the described here. I've tried different versions of react-hook-form and found that the bug was introduced in version `7.38.0`

It took some time but I finally managed to reproduce my use case. [Codesandbox](https://codesandbox.io/p/sandbox/react-hook-form-usefieldarray-forked-dvzcd8) Steps: 1. Click "Append" 2. Enter something into the array fields 3. Click "Reset" The array...