.NET 7 MemoryCache Statistics 4
After we have finished displaying memorycache entries, we can also track it’s statistics by using MemoryCacheStatistics which is included in .NET 7. We will modify...
.NET MAUI Login screen development
MAUI is a cross platform framework that we can develop mobile and desktop apps with a single code base. (We must have Visual Studio 2022)...
.NET Core logging request and responses
Implementing middleware and handling each request before consumed in controller is the best way to do it. Middlewares executions are the previous step of execution...
.NET Core resolving services from Dependency Injection container
Instead of injecting N count of service, (for example: Controller’s ctor), Looks boring. Let’s inject IServiceScopeFactory We can resolve every registered service by creating factory...