DailyDrop

SQL wildcard characters

Diving into the SQL wildcard characters (beyond %)


Read more...


nameof usage for better code quality

How the nameof operator can be leveraged to produce cleaner, less error prone code


Read more...


Tuples for class value equality

Using a tuple to check the equality of two class instances


Read more...


Unit testing a protected method

How to unit test a protected method on a class


Read more...


Entity Framework DbContext Pooling

Using DbContext pooling to improve the performance of aan application


Read more...


Visual Studio Schema Compare

Comparing two database schemas using Visual Studio Schema Compare feature


Read more...


MaybeNullWhen attribute usage

How the MaybeNullWhen attribute can be used to give more information to the compiler about your code


Read more...


Expanding on an property initializer

Adding additional values to a Dictionary property initializer


Read more...


For loop lowering in C#

Discovering how C# lowers for a loop to a while loop


Read more...


Type conversion with the implicit operator

How the implicit operator can be used to convert one type to another easily


Read more...