DailyDrop

Daily Drop wrap-up

A wrap-up on a year's worth of Daily Drop posts


Read more...


EF queries on unmapped types

Introducing the ability to execute raw queries on unmapped types


Read more...


ArrayPool for frequent array creation

Using ArrayPool for performant memory reuse when creating array frequently


Read more...


Expression-body constructor

How to write a constructor body as an expression


Read more...


Calling an async method in a constructor

Using lazy initialization to call an async method from a constructor


Read more...


Case-less Dictionary keys

How to ignore the case of Dictionary keys when performing operations


Read more...


LINQ lambda vs method group

Comparing lambda and method groups when using LINQ


Read more...


Task.Delay accuracy

Learning about the accuracy of Task.Delay with small time frames


Read more...


LINQ Any/All over Count

Use the Any or All methods instead of the Count method


Read more...


Eliding await keyword

How and why the await keyword should be elided


Read more...