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

Property Value

Type: Entity
Examples
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