You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note: Fhir is a specification for sharing health care records electronically.
A Linq2Couchbase user observes:
"FHIR has a special way it serializes objects into JSON. This works fine for reading and writing, but is complicated when searching. For example, when an extension with a FhirString value is serialized, it becomes a “valueString” property name:
new Models.Extension("https://fhir.app.localhost.net/Extension/ProjectName",
new Models.FhirString("EBCD"));
SELECT `Extent1`.* FROM `FhirBucket` as `Extent1` WHERE (`Extent1`.`resourceType` = 'Device') AND ANY `Extent2` IN `Extent1`.`extension` SATISFIES ((`Extent2`.`url` = 'https://fhir.app.localhost.net/Extension/ProjectName') AND (`Extent2`.`value` = EBCD)) END LIMIT 100
Notice how it’s searching on the property Extent2.value because it doesn’t know how to change that to Extent2.valueString which is how the JSON is actually stored. I suspect this is because the object FhirString is on the right hand side of the equal sign whereas the change from value to valueString needs to happen on the left hand side of the equal sign."
I am not sure if this can be resolved at the Linq layer, since its really an effect of how Fhir wraps .NET strings with FhirString objects without actually changing the Fhir API.
The text was updated successfully, but these errors were encountered:
The Fhir serializer changes the Extension.Value property to "StringValue" or really "xValue" where x is the primitive type that the Extension represents. This changes the mapping between the class used for the Linq query and the JSON itself. Normally you would use attributes to do this, but that requires forking Fhir (and I doubt it would work anyways because Fhir has its own serializer).
Because FhirString isn't a string, but a wrapper around the string, Linq treats it as an object - which is really the correct thing to do. If FhirString had overloaded operators/equals/etc, it might work and the internal comparison would be string == string and not string == object(string).
I'm not going to say that support for this is impossible, but it's a pretty specific edge case. I think it would require creating a pretty in-depth extension framework that would allow the query generator to be extended to account for the non-standard serialization pattern. Then, an FHIR-specific extension would be needed.
To me, the much simpler solution would be to store objects in Couchbase using a more basic, POCO-based serialization method. Then they could be queried freely, and something like AutoMapper could be used to convert them to the more specific types between the Data Access Layer and the Business Logic Layer. Of course, this may or may not be feasible for the project in question, depending on development rules and document compatibility requirements.
Note: Fhir is a specification for sharing health care records electronically.
A Linq2Couchbase user observes:
"FHIR has a special way it serializes objects into JSON. This works fine for reading and writing, but is complicated when searching. For example, when an extension with a FhirString value is serialized, it becomes a “valueString” property name:
When serialized it looks like this:
The problem is when trying to search for that, here’s what the LINQ expression becomes:
The N1QL generated looks like this:
Notice how it’s searching on the property
Extent2
.value
because it doesn’t know how to change that toExtent2
.valueString
which is how the JSON is actually stored. I suspect this is because the object FhirString is on the right hand side of the equal sign whereas the change fromvalue
tovalueString
needs to happen on the left hand side of the equal sign."I am not sure if this can be resolved at the Linq layer, since its really an effect of how Fhir wraps .NET strings with FhirString objects without actually changing the Fhir API.
The text was updated successfully, but these errors were encountered: