Click or drag to resize

AggregationFunctionType Enumeration

Represents the aggregate function to use when mapping

Namespace:  SanteDB.Core.Model.Map
Assembly:  SanteDB.Core.Model (in SanteDB.Core.Model.dll) Version: 2.2.1
Syntax
public enum AggregationFunctionType
Members
  Member nameValueDescription
None0 None
LastOrDefault1 Use LastOrDefault function
FirstOrDefault2 Use FirstOrDefault function
SingleOrDefault3 Use Single() function (throwing an error if more than on present)
Count4 Use the count function
Sum5 Use the sum function
See Also