With Entity Framework you can perform operations on relational databases without writing a single line of SQL. We will use EF to integrate PostgreSQL in our application
Continue reading
Is it true that we should always avoid comments in our code? In my opinion, no: let’s see when adding comments is not only good but necessary.
Continue reading
We all need to parse strings as integers. Most of the time, we use int.TryParse(string, out int). But there’s a more advanced overload that we can use for complex parsing.
Continue reading
Mapping every SQL result to a data type can be a pain. To simplify our life, we can use an ORM like Dapper to automatically map the data.
Continue reading
The most important trait of Tests? They must be correct. The second one? They must be readable. The AAA pattern helps you write better tests.
Continue reading
Keeping an eye on maintainability is mandatory for every project which should live long. With NDepend, you can measure maintainability for .NET projects.
Continue reading