Results 4 comments of Jeremiah Sanders

To document an additional test case using published example data, I encountered this bug when attempting to verify processing of the [`DocumentReference`-related "XDS example" `Bundle` provided by HL7](http://www.hl7.org/fhir/xds-example.html) ([XML](http://www.hl7.org/fhir/xds-example.xml) [JSON](http://www.hl7.org/fhir/xds-example.json))....

@kennethmyhra : Unfortunately, no, I don't have a PR-able fix. However, after additional testing, I discovered that there is a problem with version-aware updates _within FHIR transaction requests_. (I submitted...

That explanation makes sense. Thanks for following up. 👍 Unfortunately, that seems to indicate that HL7 has a documentation/example error. 😒 The example I was using for testing comes from...

Sure thing. Here's the minimal example: ```csharp // These must be initialized per your environment. Uri baseUri; HttpClient httpClient; FhirClientSettings settings; var fhirClient = new FhirClient(baseUri, httpClient, settings); // Create...