Blog
All posts
Connect an ASP.NET Application running on Azure Web Apps to Azure SQL and leave no messy secrets laying about in the web.config
file, depending on Azure Key Vault, or have to orchestrate building a connection string with via Azure Resource Manager.
Inspecting your objects in Visual Studio’s debugger can sometimes be tedious having to expand objects, arrays and lists trying to find that ‘problem child’ of yours. Fortunately for us, there are some handy tricks to reducing the noise, and focusing in on the members of your object that are important.
This is one of those ‘take it or leave it’ answers to an interesting question,”How to restrict the use of certain Attributes?”
You should always implement IEquatable<T>
when checking for equality on value types. In this article I’ll go into a bit of depth on how Equals()
behaves on System.Object
and one of it’s derived class, System.ValueType
.