PublicAPI.Docflow.Objects.MyLegalPerson.Filter ELMA API Documentation
Creates an assistant for working with the "My Companies" object filter
 
 
Syntax

public MyLegalPersonFilterHelper Filter()

Return Value

Type: MyLegalPersonFilterHelper
Examples

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

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

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