Implement Soft Deletes With Entity Framework’s Code First Approach
In order to maintain historical accuracy, data should not be truly deleted from a database. A soft delete can be used to signify…
Read MoreIn order to maintain historical accuracy, data should not be truly deleted from a database. A soft delete can be used to signify…
Read MoreI first noticed the yield keyword on some shared code at work about a year ago. Befuddled, I read MSDN’s description of the…
Read MoreA friend of mine, who runs the facebook page borkborkiamdoggo, approached me a few months ago wanting to set up a WordPress site…
Read MoreI am working on a side project which involves a Raspberry Pi (model 2B) and an Adafruit PIR motion sensor. I decided early on…
Read MoreA Quick Preface A shallow copy of an object is one that points to the same place in memory as the original. Any changes…
Read MoreJavaScript Object Notation (JSON) is nothing more than a string with a specific format. It enables JavaScript to easily send and receive data…
Read MoreSelect lists can be tricky in any language. Typically there is some data source providing a human-readable list of options, a machine-readable value (unique identifier), and…
Read MoreI started learning and implementing Google’s Angular Javascript framework earlier this year for a side project. One of the application pages required sorting of an…
Read MoreI was recently tasked with connecting an existing .NET Web API solution with a 3rd party Java API. I read through the external…
Read MoreI like to use completely separate configuration files when working with different deployment environments. For example, the connection string to the database in my development environment…
Read More