Darrell
Darrell
> > has this been tested / used with file shares > > I haven't tried this. The lock is based on .NET's exclusive stream locking which uses OS-level file...
Seems sensible. To go one step further, before pushing to the distributed lock layer, it might also be valuable to add a SystemDistributedLock layer in front of that again -...
Yeah I think its valuable, when debugging locally I like dependencies minimal so using in memory locks is perfect. When deployed to staging and production we'd want a proper distributed...
I think one basic scenario that many people might look for is basically a replacement / substitute to this code, that makes it global: ```csharp lock(_lock) { // blah }...
I would think both should be supported. For example, suppose when I insert a record, a "createdon" value, and the "Id" is generated on the server, and the "Id" is...
Have investigated a bit more. When I `AddMvc()` at the root container level, and then the root container is asked to resolve `MvcRouteHandler` - the `AspNetConstructorSelector` inspects the constructors of...
I'll have a go at creating a replication test to see if this is some issue with `AspNetConstructorSelector` and child containers.
I have a sneaking suspicion this may be because the root container is populated from an IServiceCollection passed in from the WebHostBuilder already primed with 60+ services by default. When...
Any updates on this one?
That makes two of us ;-) I found this issue: https://github.com/structuremap/structuremap/issues/618 which looks very similar but I don't think it has really been resolved despite being closed.