Steven
Steven
> Are you sure its calling a DAC No, I'm pretty sure that your code _doesn't_ use DAC as it is using the `DefaultExpressionCompilationBehavior`, which simply calls `System.Linq.Expressions.Compiler.LambaCompiler.Compile`. This uses...
[feature-722](https://github.com/simpleinjector/SimpleInjector/tree/feature-722) branch created.
Open questions: * Should measurement include initial construction of expression trees? This is a one-time cost. * Should measurement include the time it takes to create a singleton? This is...
Moved this back to the backlog. There are too many open questions and caveats at this point.
See this thread for a mand-made solution: https://github.com/simpleinjector/SimpleInjector/issues/941
Hi @IfThingsThenStuff, From your question I assume that you want to use the one-container-per-tenant solution, while having everything run in a single web application in a single process. Although this...
We have single app server clusters with one database per tenant. The tenant information is pulled from a cookie. This means that 2 different tenants can share the same instance...
Hi Scott, At this point, the Simple Injector project does not accept financial donations, and as long as I'm leading the project, you don't have to expect the project to...
Here are some pointers for research: * **Clearing Expressions**: `InstanceProducer` instances cache the `Expression` that is built by their `Registration`. This is crucial for build performance. Not caching would easily...
Added this feature request to a future milestone.