GitLab CI-CD .Net Core
This article covers the implementation of a simple example of CICD for a .Net Core project on GitLab with windows runner. In practice, we want to implement a service that automatically does what we do manually to publish the project. What do we do to publish a .NET ....
Read more
How to use HttpPatch in Asp.Net Core
We typically use HttpPut to edit information. In this case, we have to send all the fields related to the entity. But if only one or two fields need to be edited, what is the need to send the rest of the fields? Using HttpPatch we can only send the fields ....
Read more
IIS Always running
By default in IIS, if no request is sent to the application for 20 minutes, the application will be suspended and if a request is sent to the application again, it will respond to the first request with a slight delay. Due to re-running the application. In applications with a large n ....
Read more
Dapper does cache the query strings
When you use Dapper to read information, add information, etc., in the Dapper library, your written query is stored in a ConcurrentDictionary, so that if the same query is run again, the process to run the query again will not run. ....
Read more
Eliding async await
Normally, methods written async do not run faster than sync methods and only allow the system to respond to more requests. This topic was presented in the article How Thread pool works. ....
Read more