Pavel Zemlianikin
Results
2
comments of
Pavel Zemlianikin
It is working with the `ComplexProperty` mapping feature from EF Core 8. ```csharp var hostBuilder = Host.CreateEmptyApplicationBuilder(new() { Args = args }); hostBuilder.Logging.AddConsole().SetMinimumLevel(LogLevel.Debug); hostBuilder.Services.AddDbContext(b => b.UseNpgsql(connectionString); var host = hostBuilder.Build();...
You can nest an error handler inside `Bind`, `Check`, whatever. For your case, more optimal is to have a single "Error case handle" at the end of the chain, I...