Click or drag to resize

ActMoodConcept Property

Gets the delay-loaded value of the MoodConceptKey property

Namespace:  SanteDB.Core.Model.Acts
Assembly:  SanteDB.Core.Model (in SanteDB.Core.Model.dll) Version: 2.2.1
Syntax
public Concept MoodConcept { get; set; }

Property Value

Type: Concept
Remarks

The loading of this delay-loaded property is based on the configuration of the SanteDB host environment (i.e. whether deep-loading of lazy-loading of properties is enabled). It is good practice to load any delay-load properties using the LoadProperty method, such as:

act.LoadProperty(o=>o.MoodConcept)

See Also