PublicAPI.Docflow.Objects.BPMN.SendToApprovementTask.Filter ELMA API Documentation
Creates an assistant for working with the "Send for Approval" object filter
 
 
Syntax

public SendToApprovementTaskFilterHelper Filter()

Return Value

Type: SendToApprovementTaskFilterHelper
Examples

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

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

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