Daniel Marbach
Daniel Marbach
Hy paul See my suggestions here: http://www.planetgeek.ch/2012/05/05/what-is-that-all-about-the-repository-anti-pattern/ ``` cs Public interface IUnitOfWork { IUnitOfWorkScope Start(); } public interface IUnitOfWorkScope : IDisposable { void Commit(); void Rollback(); ... } ```
[clabot:check]
No interest in this contribution?
This is already a long time I go, so my memories might no longer be entirely correct. I believe I introduced this change because the actual root exception was masked...
Are there any updates on this? Fedora is a widely used distro. It would be great to have official support
As a workaround, the following gets you going on Fedora 37 ```bash sudo ./dotnet-install.sh --channel 7.0 --install-dir /usr/lib64/dotnet ``` See [dotnet-install.sh](https://learn.microsoft.com/en-us/dotnet/core/install/linux-scripted-manual#scripted-install)
@AlirezaHaghshenas it is unfortunately a binary installation that requires updates. The good thing though is that it pulls latest 7 binaries and since versions can live side by side you...
Closing because of the lack of interest or interaction.
@zeko77 We've prioritized your issue near the top of our list and will work on it as soon as we can.
Would it be a option to use [change token](https://learn.microsoft.com/en-us/aspnet/core/fundamentals/change-tokens?view=aspnetcore-8.0) for the cache key invalidation instead of the event type proposed currently?