Alexis Nowikowski

Results 10 issues of 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 =...

enhancement
help wanted

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...

bug

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...

bug

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() ```

This PR fixes issue #253 When calling `SqlTableDependency.Stop()` method an `UnobservedTaskException` event is raised, which is not supposed to happen as an application with `ThrowUnobservedTaskExceptions` set to `true` would crash...

When you call the `SqlTableDependency.Stop()` method an `UnobservedTaskException` event is raised. My app is setup to crash when such an event occurs - it has the following line in the...

A `NullReferenceException` is thrown when the `SelectAll/UnselectAll` methods within `SelectAllSelector` are called and the `SelectedItems` collection items type is a value type. For example you could have `CheckComboBox` with enums...

Fixes issue #1787. Please review.