PublicAPI.Docflow.Objects.Tasks.StageApprovement.Filter ELMA API Documentation
Creates an assistant for working with the "Approval stage" object filter
 
 
Syntax

public StageApprovementFilterHelper Filter()

Return Value

Type: StageApprovementFilterHelper
Examples

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

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

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