PublicAPI.Docflow.Document.Filter ELMA API Documentation
Creates an assistant for working with the "Document" object filter
 
 
Syntax

public DocumentFilterHelper Filter()

Return Value

Type: DocumentFilterHelper
Examples

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

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

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