Click or drag to resize

ActParticipationPlayerEntity Property

The delay-load property for PlayerEntityKey

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

Property Value

Entity
Example
C#
void DoSomething(ActParticipation foo) {
    // This property is used with .LoadProperty to provide convenient loading of data
    var playerType = foo.LoadProperty(o=>o.PlayerEntity).TypeConceptKey;
}
See Also