Stuart Turner
Stuart Turner
Secondary goal: Mark non-key Identity columns as allowed, but skippable
There are several new APIs on `IQueryable` coming out in .NET 6 that we should address at some point, whether to support or expressly reject. This is an initial issue...
I am migrating from AutoFac to DryIoc, and there is one feature that I am missing that I wish would be in DryIoc. (With some help, I would be interested...
### Describe the feature @SteveDunn Would you be opposed to an additional option that would automatically implement `IComparable`, in addition to `IEquatable`? There are cases where I would like to...
Current recommended use of `HttpClient` is defined in [this document](https://docs.microsoft.com/en-us/dotnet/architecture/microservices/implement-resilient-applications/use-httpclientfactory-to-implement-resilient-http-requests). One should not create a new `HttpClient` for each request, neither should one use a single `HttpClient` for the entire...
Adds a concurrency detector, which will throw when the `DataConnection` has been used on multiple threads or in simultaneous situations incorrectly. Fixes #4405
Per the discussion in #4404, we should add an explicit concurrency check, similar to EFC, which would inform the user of invalid behavior. We can use a similar class to...
### Describe your issue When writing a MERGE statement that has a CTE as a destination table, and when no columns are explicitly specified for the destination table (e.g. when...
In most operators, we have guard statements that are executed immediately, while the bulk of the operator is implemented in a separate method (see #837 for discussion on why this...