Recent Posts

Understanding Local Functions in C#

less than 1 minute read

C# 7.0 introduced local functions, which allow you to declare methods inside the scope of another method. This is incredibly useful for keeping helper method...

How To Use Dapper For Mysql In C

less than 1 minute read

A few days ago, I was looking for a way to save time when writing CRUD operations. I found a great solution — it's called Dapper.