Roger Kratz
Roger Kratz
FWIW, I have the same problem. Actually - not only agent mulder stops working but all r# commands. I'm using VS2010 though.
Our code today looks like this.... ``` builder.RegisterType().ApplyAspect().....; builder.RegisterInstance(svc2).ApplyAspect()....; builder.Register(x => ....).ApplyAspect()....; ... ``` ...where our extension method(s) `ApplyAspect` checks if the component should be aspected, and if it should,...
(I noticed that Autofac.Extras.DynamicProxy's `Enable...` ext methods does a lot more than we need, so maybe I shouldn't mentioned that library at all. What we need is basically do some...
> How does this relate to [the existing set of lifetime events](https://autofac.readthedocs.io/en/latest/lifetime/events.html) - OnPreparing, OnActivating, OnActivated, OnRelease? Is this new or would these events work? I don't know but I...
If today's ext methods in RegistrationExtensions that actually creates new registrations (`RegisterInstance(...)`, `RegisterType(...)` and `Register(...)` were virtual instance methods on `ContainerBuilder`, we could control the registration the way we want....
`DefaultRevisionEntity` is behind the scenes mapped as a normal nhib entity with `Id` mapped with identity generator. When using identity as id generator, this is the behavior AFAIK => when...
BTW, why is current behavior causing problems for you?
Isn't the mapping a bit strange? Which side of the relationship should be responsible for the `parentKey`, `Parent` or `Children`? In your example it's both of them... Either let `Children`...
I didn't even know this mapping was allowed in NH Core? In your test, you have a bidirectional ref where "many-side" is marked with inverse=true - still that side is...