I have tsi data that I would like to map to different classes because my events are of different "type/format" : all the same properties are not present on the events. And I want to avoid doing multiple requests to TSI.
I would like to do something like that :
var events = await environment.EventQuery<ITimeSeriesEntity>(FromDate, ToDate, Limit.Take, 200)
.ExecuteAsync();
where IEventQueryhas multiple implementation with different properties.
Is it something possible wtih Chronological ?
I have tsi data that I would like to map to different classes because my events are of different "type/format" : all the same properties are not present on the events. And I want to avoid doing multiple requests to TSI.
I would like to do something like that :
where
IEventQueryhas multiple implementation with different properties.Is it something possible wtih Chronological ?