Raphael Schweizer

Results 9 issues of Raphael Schweizer

With FSharp.Data 3.3.3 (latest as of 31.12.2020) the following phenomenon can be observed: ```fsharp #r "nuget: FSharp.Data,3.3.3" open FSharp.Data type PT = JsonProvider // expected: JsonProvider.IntOrString [] [] // actual:...

type-bug
up-for-grabs

The following test currently fails: ``` var data = Uint8List.fromList([1, 2, 3, 3, 3]); final pkcs7 = PKCS7Padding()..init(); final padCount = pkcs7.padCount(data); expect(padCount, 3); final d = pkcs7.process(false, data); //...

I'd like to combine C# 9 positional records, `System.ComponentModel.DataAnnotations`, model validation and `Swashbuckle.AspNetCore` (current latest 6.2.1) in a concise and convenient way: Ideally, this record ```csharp public record Foo([StringLength(2)] string...

p2
help-wanted

allows usage with pandoc 2.9

fixes https://github.com/JoshClose/CsvHelper/issues/2264 As an alternative we could use `await using var enumerator...` but this would increase the difference between the overloads.

The `CsvWriter.WriteRecordsAsync` overload for `IAsyncEnumerable` creates an `IAsyncEnumerator` but does not dispose implementations not implementing `IDisposable`. When using EF Core with streaming results this leads to concurrent queries on the...

bug

### Is there an existing issue for this? - [X] I have searched the existing issues ### Describe the bug When creating a .NET 9 (Preview 7) WepAPI project through...

area-mvc
feature-openapi
area-minimal

Adds support for external (non-in-app) browsers on iOS to participate in SSO-sessions and allow e.g. Citrix MDM to provide its secure browser (which in turn allows SSO for e.g. enterprise...

How can I make a derived property not filterable? Given ``` public class Base { public int Prop { get; } } public class Derived : Base; ``` I would...

question
investigating