Shane Krueger
Shane Krueger
and use transparent for dark and white for light color
All changes here look good. Generated QR codes scan properly with Google Authenticator. Tests have already been added :+1:
> > Would it be possible to have an API similar to the one already existing for standalone insert/update? > > ```cs > > src > > .Merge() > >...
I agree that mandating expression trees such as the below is not the best solution to allow for dynamic programming: ```cs .InsertWhenNotMatched((setter, src, target) => setter .Set(target.Field1, 2) .Set(target.Field2, src.Delta)...
~I'd vote for 2 or 3 nearly evenly, but I would favor 3 because it removes ambiguity and provides 'natural' indentation.~ I vote for 3: Due to "conflict" with existing...
Makes sense. In the meantime, you could add an extension method similar to this: ```cs public static IDataLoaderContext DataLoaders(this IResolveFieldContext context) => (context.RequestServices ?? throw new InvalidOperationException("RequestServices not set")) .GetRequiredService().Context...
We have the same issue with the `IResolveFieldContext.RequestServices` property -- for implementations that set this within `ExecutionOptions`, it is always non-null, but then any use needs to use the null...
Make sense. I'd suggest that we change the annotation for `IDataLoaderContextAccessor.Context` to non-null now (`master` branch / v7). Feel free to write a PR. The `RequestServices` property is a bit...
@sungam3r Let's merge this as an example, either as-is, or as a separate example, rather leaving it as a perpetual PR.