Click or drag to resize

ActParticipationAct Property

Delay load property for ActKey

Namespace: SanteDB.Core.Model.Acts
Assembly: SanteDB.Core.Model (in SanteDB.Core.Model.dll) Version: 3.0.2081-alpha+0a330d5f5a5d3cb3e6e945ef530e94ac5671b49c
Syntax
public Act Act { get; set; }

Property Value

Act
Example
C#
void DoSomething(ActParticipation foo) {
    // This property is used to delay-load nested data
    var typeOfConcept = foo.LoadProperty(o=>o.Act).TypeConceptKey;
}
See Also