Dirk Schuermans
Dirk Schuermans
Hello, When trying to create new certificates for my domain & subdomains, my script has suddenly stopped working with the following exception: ``` C:\Tools\LetsEncryptCertificates\GenerateCertificates.ps1 : ACMESharp.AcmeClient+AcmeWebException: Unexpected error --- >...
**Describe the bug** `.GetHashCode()` returns different hash for 2 units for which `.Equals()` return true **To Reproduce** ```csharp Length inCm = Length.FromCentimeters(100); Length inM = Length.FromMeters(1); Assert.AreEqual(inCm, inM); Assert.AreNotEqual(inCm.GetHashCode(), inM.GetHashCode());...
Hey, I can't seem to get this working within a code-first project which uses table splitting to split a large table into several entities (http://weblogs.asp.net/manavi/associations-in-ef-4-1-code-first-part-4-table-splitting) I've created a sample project...