FHIR Chat · FHIR Path evaluator · implementers

Stream: implementers

Topic: FHIR Path evaluator


view this post on Zulip Suganya Viswanathan (Feb 18 2019 at 05:15):

I was referring to "https://github.com/ewoutkramer/fhir-net-api".
Can any one help me with sample implementation, on evaluating FHIRPath expressions in c#.

Thanks in Advance.

view this post on Zulip Jens Villadsen (Feb 18 2019 at 09:16):

https://github.com/brianpos/FhirPathTester

view this post on Zulip Suganya Viswanathan (Feb 18 2019 at 11:44):

https://github.com/brianpos/FhirPathTester

Thanks :)

view this post on Zulip Brian Postlethwaite (Feb 20 2019 at 02:33):

Note that the R4 support is a little older in that from the source perspective, waiting for the official NuGet package to be released. And as such this is still using the 0.96 version of the fhir package references...
If you're wanting to see how to write the code to use the expression evaluation, it will now look a little different, but not too much.

view this post on Zulip Brian Postlethwaite (Feb 20 2019 at 02:34):

But if your content is DSTU2 or STU3, the expression evaluation is pretty simple...

view this post on Zulip Brian Postlethwaite (Feb 20 2019 at 02:37):

Note that the way I detect which version of FHIR the document is, I just attempt to parse with each of the versioned parsers which changed with the 1.x series of assemblies so is broken to just update at the moment too.
The more recent versions might have better luck using the PermissiveParsing settings, but I haven't had time to update and try with that yet.


Last updated: Apr 12 2022 at 19:14 UTC