admin管理员组

文章数量:1399957

Not sure how the BindingAttribute value can be used to obtain the ValueSet applicable to the property. This is the code from the Condition class defined in firely-net-sdk ():

/// <summary>
/// Identification of the condition, problem or diagnosis
/// </summary>
[FhirElement("code", InSummary=true, Order=140, FiveWs="FiveWs.what[x]")]
[Binding("ConditionKind")]
[DataMember]
public Hl7.Fhir.Model.CodeableConcept Code
{
  get { return _Code; }
  set { _Code = value; OnPropertyChanged("Code"); }
}

For other properties like enumerations, the associated ValueSet is represented in the annotation.

[FhirEnumeration("ConditionClinicalStatusCodes", ";, ";)]
    public enum ConditionClinicalStatusCodes

How can i obtain the ValueSet using the value from the BindingAttribute like "ConditionKind"?

本文标签: netHow to obtain the ValueSet of a FHIR resource property using the Firely Net SDKStack Overflow