Creating a simple MiddlewareFilter using .NET Core 2.0 and dependency injection
A MiddlewareFilter is the perfect tool for creating conditional logic on MVC controllers or actions using .NET Core. It receives the Middleware benefits of…
Read MoreA MiddlewareFilter is the perfect tool for creating conditional logic on MVC controllers or actions using .NET Core. It receives the Middleware benefits of…
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 Quick Preface A shallow copy of an object is one that points to the same place in memory as the original. Any changes…
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