Ryan Heath

Results 7 issues of Ryan Heath

With client v3 we have this code ``` if (session.Advanced.IsLoaded(obj.Id)) { session.Delete(obj); } ``` v3 succeeds, but v5 fails when obj.Id was not loaded but missing in the session. To...

Added support to monitor the bot's memory usage. Trying to solve #396 Since the framework does not natively support calculation of memory usage of a single object, I used reflection...

For those who use Visual Studio Code or JetBrain's Rider😅

Fixes #1728 I do not know how to test it. The generated code in the liquid file is not the same as the 'real' ```NJsonSchema.Converters.JsonInheritanceConverter```, which has tests. Also the...

See example code & payload ``` [JsonInheritanceConverter(typeof(Event), "$type")] [JsonInheritanceAttribute("Arrival", typeof(Arrival))] [JsonInheritanceAttribute("Departure", typeof(Departure))] public partial class Event { } public partial class Data { [JsonPropertyName("events")] public ICollection Events { get; set;...

### Describe the bug The net9.0's v1.0.64 of the Garnet.worker.exe does not work or run. It fails with exception: `Unhandled exception. System.IO.FileNotFoundException: Could not load file or assembly 'System.Diagnostics.EventLog, Version=9.0.0.0,...

bug

This pull request focuses on modernizing and simplifying the codebase, primarily through code style improvements, C# language feature adoption, and minor dependency updates. The changes include converting namespaces to file-scoped...