Andreas Hussong

Results 8 issues of Andreas Hussong

**Describe the bug** CQL Tuple types are currently mapped to C# ValueTuples. Unfortunately, this has the effect that the field names of the tuple are not available at runtime as...

Demonstrating an idea/possible approach to fix issue #592 Refactors the *Expression to C# conversion* code especially for Tuples to use `ExpandoObject` and `dynamic` instead of `ValueTuples`. Adds some testdata and...

Demonstrating Issue #592 Adds some testdata and two unit-tests to demonstrate an issue representing CQL Tuple Types as C# ValueTuples. See #592 for a detailed description of the issue. **Summary**...

**Is your feature request related to a problem? Please describe.** The repository contains a global `README.md` file, which nicely introduces the complete SDK and provides some generic information and links....

Documentation

Expressions like ```cql Patient.name.where(use='official') ``` aren't properly converted to ELM. The conversion fails with the following error message embedded in the annotation field of the expression: `Could not resolve call...

Expressions like ```cql codesystem LOINC: 'http://loinc.org' code "Body height": '8302-2' from LOINC define "Filtered Retrieve": [Observation: "Body height"] ``` cannot be invoked although this is valid CQL and it's clearly...

Expressions like ```cql [Observation] O where O.code ~ Code { system: 'http://loinc.org', code: '8480-6' } ``` aren't properly converted into ELM. The conversion fails with the following error message embedded...

**Describe the bug** Converting a CQL query expression that contains a where filter clause into ELM ignores the where-clause. The where field in the generated ELM is null. **To Reproduce**...