Alexis Nowikowski
Alexis Nowikowski
In the current version, for each Reference you need to define in your model a field of type LazyReference. Ex: ```c# public class Course { ... private LazyReference _departmentLazy =...
In my app I need to dispose the `WebSocket` but if the `WebSocket` is connected then I would like to make sure that the `Closed` event will get fired. If...
MathParser.org-mXparser verssion: v.5.2.1 Framework: .NET Framework 4.7.2 I came into a bug today, please see the following test case that I created to experience the bug: ```c# [TestMethod] public void...
This is a test case that fails for bug #310
The following code fails, but it should pass. Using Shouldly v4.2.1 NuGet package ```c# var testObject1 = new Dictionary { { "A", new Dictionary() } }; var testObject2 = new...
Sometimes you have to check if a number is not negative, then you can use `ShouldBeGreaterThanOrEqualTo(0)`. It would be more clean to use following extension methods: ``` x.ShouldNotBeNegative() x.ShouldNotBePositive() ```