Volodymyr Dombrovskyi
Volodymyr Dombrovskyi
As for me, this is a significant issue with this otherwise just awesome library, that reference type ids can be generated. Main issue is invariants protection: too easy to just...
Hi, I've been using it from constructor, just like you do, but in code-first scenario. You may try though registering hooks outside of MyDbContext class, e.g. ``` var dbContext =...
Hi. You may do your own IDbHook implementation, for example: ```csharp class IncrementDataAccessCountHook : IDbHook { public void HookEntry(IDbEntityEntry entry) { entitiesMaterializedCount++; } } ``` and attach it using non...
Yes, load hooks are fired for each entity object when created from data in the data source as part of a query or load operation (as it based on [ObjectMaterialized...
Thanks for review. I'll prepare it as a standalone sample and update PR.
> Thanks buddy Hope things are ok for you and your family > > I've merged in your other PR so you will need to rebase this one more time...
This must be possible now after https://github.com/prom3theu5/aspirational-manifests/pull/277 merged