Pavel Voronin

Results 41 comments of Pavel Voronin

Yes, it's the same. However, I'd offer to consider one additional thing. Flurl reads stream only once and then disposes it as I can see. The above mentioned PipeDrive API...

@rehret , AFAIK, `System.Text.Json` works with attributes applied to constructor params of the records. Would be nice to have same behavior from Newton serializer.

The weird thing is that if I start both projects , everything works fine, but If I start only server, I get this error.

@sharwell What's the difference between `WithAssemblies` and `AddAssemblies`?

Here's my setup: ```CSharp public sealed class ResultNotDiscardedAnalyzerTests { private const string Code = @" using Utilites; class Foo { void Bar() { Result.Ok(); } } "; [Fact] public async...

This one wroks: ```cs [Fact] public async Task Test() { await new CSharpAnalyzerTest { ReferenceAssemblies = new ReferenceAssemblies( "net6.0", new PackageIdentity("Microsoft.NETCore.App.Ref", "6.0.0"), Path.Combine("ref", "net6.0")), TestState = { Sources = {...

There is a nice [post](https://medium.com/real-world-fsharp/continuous-integration-with-type-providers-6ddf40ee31b3) about this problem. But it would be nice to have an option for enabling dumping dbml file, if it's not present.

@mpollmeier Actually, this problem is still actual for Amazon Neptune. At least I have no idea how to initialize connection in a way it worked.

@id annotation is just not working independently of classes order =(

@mpollmeier could you a give me a hint what I am doing wrong? This test fails for me =( ```Scala @label("user") case class UserWithId(@id id: Int, name: String, age: Int)...