PublicAPI.KPI.Objects.KpiPlanValueHistory.Filter ELMA API Documentation
Creates an assistant for working with the "History of the indicator's Plan values during the period" object filter
 
 
Syntax

public KpiPlanValueHistoryFilterHelper Filter()

Return Value

Type: KpiPlanValueHistoryFilterHelper
Examples

//creating an object filter using Assistant 
var filter = PublicAPI..KpiPlanValueHistory.Filter().Query("ID in (1,2,3,4)").Filter;

//using filter 
var kpiplanvaluehistoryList = EntityManager<KpiPlanValueHistory>.Instance.Find(filter, null);

//where "kpiplanvaluehistory"List - list of output data according to filter criteria
See Also