Shane Krueger

Results 854 comments of Shane Krueger

> > > Throwing my thoughts in, We should keep an eye on perf with these changes. It will be interesting to see how removing readonly impacts JIT optimizer >...

> How can a user of linq2db modify the `ConvertBuilder` class or a .net framework class?? Users can only modify the code they own, can't they? My thoughts as well....

> I hate that initialization and refresh are duplicated code. > > This is gonna lead to bugs because of copy-paste mistakes, or a new contributor will see the member...

Added sample federation projects in #3660 including tests with a federation server. Please specify if there are any specific questions you have.

See related: - https://github.com/graphql-dotnet/server/pull/733

see: - #3583 @sungam3r Let's solve this for v8 if we redo the field builders.

There is a third solution: have the second registration call the first registration for all methods of the registered interface except the IDisposable.Dispose method, which it consumes. This will not...

```cs // primary services.AddSingleton(); // secondary services.AddSingleton(provider => new SchemaMapper(provider.GetRequiredService())); private class SchemaMapper : ISchema { public SchemaMapper(ISchema mapped) => _mapped = mapped; // implement all methods of ISchema, passing...