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: 2.2.1
Syntax
public Act Act { get; set; }

Property Value

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