iron9light
iron9light
My unit test is very simple: ```csharp [Fact] public async Task SomeTest() { using (var runner = MongoDbRunner.Start()) { var myService = GetMyService(runner.ConnectionString); ... } } ``` It works fine...
```csharp // cloudEvent.Time is Nullable (cloudEvent.Time?.ToUniversalTime()).Should().Be(cloudEvent2.Time?.ToUniversalTime()); ``` This code will get a NullConditionalAssertion warning. But ```csharp var x = cloudEvent.Time?.ToUniversalTime(); x.Should().Be(cloudEvent2.Time?.ToUniversalTime()); ``` has no warning. Is it a bug of...
https://groups.google.com/d/topic/hawtdb/OFhjGrXbTDc/discussion
-b, --bare Compile the JavaScript without the top-level function safety wrapper.
It's 1.1.1 now.
It seems Mongo has introduced a new way to store GUID, and they call it Standard. see . I just tested and check the code. This version (1.0.2) of Newtonsoft.Json.Bson...