I'm looking into building an adhoc datasource to provide some more insight into usage of our matrix crosspoints. since every crosspoint being made adds an information event i'm tempting to go through them with the repositoryRegistry however instead of fetching all information events on a wildcard and then filtering them i was wondering if i can already dynamicaly add them to an orfilter
Basically i want to add a bunch of
new ORFilterElement<Info>(
InfoExposers.ParameterName.Contains("search x" ),
InfoExposers.Value.Contains("Value x"),
InfoExposers.ElementID.Equal(elementId),
InfoExposers.SeverityID.Equal(severity)
);
into
var filter = new ANDFilterElement<Info>(
InfoExposers.TimeOfArrival.GreaterThan(start),
InfoExposers.TimeOfArrival.LessThan(end),
Dynamiclistof Filters
);
so i can pass them to the: CreateReadQuery(filter).Execute();
is this possible?