Thiwakorn
Thiwakorn
I found a workaround to this by calling `DisposeAsync()` manually in a `try...finally` block. Instead of `using`. ```csharp var csvwriter = new CsvWriter(writer, configuration); try { await csvwriter.WriteRecordsAsync(records); } finally...
@nikkione I'm still having this problem. Please explain your suggestion again, I still cannot understand. My workspace folder is like this (VSCode in WSL) ``` /path/to/my-workspace/ ├ my-project.code-workspace ├ my-project-folder...
A way to avoid is to not change the name of `QueryType` descriptor or add `descriptor.Name("Query")` in every classes that extends `ObjectTypeExtension`
Is there any ongoing work on this? Another example is when you want to expose a field that depends on the ignored field that field won't be able to fetch....