Click or drag to resize

IAggregatorModify Method

Called by the rules engine when existing facts are modified in the corresponding aggregator.

Namespace:  NRules.Aggregators
Assembly:  NRules (in NRules.dll) Version: 0.9.3
Syntax
C#
IEnumerable<AggregationResult> Modify(
	AggregationContext context,
	ITuple tuple,
	IEnumerable<IFact> facts
)

Parameters

context
Type: NRules.AggregatorsAggregationContext
Aggregation context.
tuple
Type: NRules.RuleModelITuple
Tuple containing preceding partial matches.
facts
Type: System.Collections.GenericIEnumerableIFact
Existing facts to update in the aggregate.

Return Value

Type: IEnumerableAggregationResult
Results of the operation on the aggregate, based on the modified facts.
See Also