Click or drag to resize

ActTypeConcept Property

Delay loads the concept represented in TypeConceptKey

Namespace:  SanteDB.Core.Model.Acts
Assembly:  SanteDB.Core.Model (in SanteDB.Core.Model.dll) Version: 2.2.1
Syntax
public Concept TypeConcept { 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.TypeConcept)

See Also