Fiodar Buyakou

Results 5 comments of Fiodar Buyakou

This is how I currently solve this problem. ```cs internal class ErrorFilter(IServiceProvider serviceProvider) : IErrorFilter { public IError OnError(IError error) { if (error.Code == "AUTH_NOT_AUTHORIZED") { // if error code...

@glen-84, problem solves very easy with simple extension methods. ```cs internal static class DescriptorExtensions { public static IObjectFieldDescriptor Field(this IObjectTypeDescriptor descriptor, Delegate @delegate) => descriptor.Field(@delegate.Method); public static IObjectFieldDescriptor Field(this IObjectTypeDescriptor...

> Pretty sure we don't support Unix sockets When why keep it in the source code? https://github.com/search?q=repo%3Adenodrivers%2Fmongo%20domainSocket&type=code

Here is my findings. It is possible to tamper the metadata using internal APIs to force it generate correct migrations code but there are two drawbacks: - It generates broken...

Our team is developing on Windows and deploying to Linux. In our model we have some indexes with SQL filter expressions. Also, we have custom constraints. In many cases these...