PublicAPI.Portal.Objects.Messages.InformationChannel.Filter ELMA API Documentation
Creates an assistant for working with the "Public Channel" object filter
 
 
Syntax

public InformationChannelFilterHelper Filter()

Return Value

Type: InformationChannelFilterHelper
Examples

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

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

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