Łukasz Szafirski

Results 12 issues of Łukasz Szafirski

Consider this application: ```csharp class Program { static async Task Main(string[] args) { const string connectionString = "User ID=postgres;Password=postgres;Host=localhost;Port=5432;Database=ac;"; await using var connection = new NpgsqlConnection(connectionString); DateTime? param = null;...

**Operating System**: `Debian GNU/Linux 10 (buster)` **DocFX Version Used**: 2.59.0 **Template used**: `default` **Steps to Reproduce**: 1. Create directory with following files: Dockerfile ``` FROM alpine:latest as build ARG DOCFX_VERSION=2.59.0...

Hello, I am new to flux pattern. I have read fluxor tutorials and while they are super clear I am still missing one piece - how to manage state nested...

### Background and motivation This feature is about allowing adding custom `IValueFormatter`s to `AssertionScope`. In my development I discovered that I need to selectively customize formatting of an object based...

enhancement
api-approved

How to pass array of records postgres type as a parameter from c#? I have tried to send it the same way it is received from query result - as...

.NET SDK: 7 Consider following snippet: ```csharp using Microsoft.EntityFrameworkCore; Console.WriteLine("Hello World!"); class MyDbContext : DbContext { protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) { optionsBuilder.UseNpgsql(); base.OnConfiguring(optionsBuilder); } protected override void OnModelCreating(ModelBuilder modelBuilder)...

### Discussed in https://github.com/dotnet/aspnetcore/discussions/54384 Originally posted by **FLAMESpl** March 5, 2024 I have created solution using template "Blazor Web App" in .NET8, webassembly as interactive render mode and per page/component...

area-blazor
Needs: Attention :wave:
Needs: Repro

I need to merge just one assembly, `ILRepackInputAssemblies` property does nothing and I do not want to go through each of my dependencies to exclude them. Is it possible?

enhancement
question

I cannot set value to code editor, I am getting this exception: `Microsoft.JSInterop.JSException: Couldn't find the editor with id: entity-view editors.length: 0` I am declaring code editor like this: ```...

Consider this file: ```csharp @page "/" @using BlazorMonaco.Editor Home Hello, world! Toggle @if (visible) { Visible! } Welcome to your new app. @code { private string content = "{}"; private...