Kevin Smith

Results 14 issues of Kevin Smith

While answering this [Stack Overflow Question](https://stackoverflow.com/questions/63346252/mongodb-how-to-return-random-elements-without-linq-mongodb-c) I came across that $sample was not supported in the fluent aggregation syntax and also noticed it's been raised on [Jira (CSHARP-2659)](https://jira.mongodb.org/browse/CSHARP-2659) too. So...

crud

We've just bumped into this problem with deserializing JSON into an object, looks like it's similar to this Stackoverflow post (https://stackoverflow.com/questions/63038334/how-do-i-handle-partial-json-in-a-jsonconverter-while-using-deserializeasync-on) I'm not sure how to fix it but seems...

We have an API Client that may get out of sync with the server contract, however, at the moment the polymorphism support just blows up if there's no matching discriminator....

### Description When exporting a tenant with a action on Windows, the JSON metadata uses the Windows path delimiter (`\`) within the "code" field. This is fine if you then...

bug

Currently, all method calls return a `CompaniesHouseClientResponse` which is a wrapper around a Data object, however, recently we've added StatusCode, ReasonPhrase, and RetryAfter (https://github.com/kevbite/CompaniesHouse.NET/pull/182) so that clients can apply back...

discussion

System.Text.Json is now the default for .NET applications, it has loads of performance benefits too.

enhancement

Companies House have a list of enum values to their display name representation. It'd be good if the following was possible: ```csharp var result = await client.GetCompanyProfileAsync("10440441"); // England/Wales var...

enhancement