PublicAPI.Processes.WorkflowTaskBase.WorkflowTask.Filter ELMA API Documentation
Creates an assistant for working with the "Workflow Process Task" object filter
 
 
Syntax

public WorkflowTaskFilterHelper Filter()

Return Value

Type: WorkflowTaskFilterHelper
Examples

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

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

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