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
版权声明:本文标题:.net - How to obtain the ValueSet of a FHIR resource property using the Firely Net SDK - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744240967a2596787.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论