◆ getRecordsBySeries< T >() [1/2]
| inline |
Retrieves the complete series/track records from the given world_table_name based on the partial track information contained in the table_name.
This operation supports paging through the data via the offset and limit parameters.
In contrast to getRecords this returns records grouped by series/track. So if offset is 0 and limit is 5 this operation would return the first 5 series/tracks in table_name. Each series/track will be returned sorted by their TIMESTAMP column.
| T | The type of object being retrieved. |
| request_ | Request object containing the parameters for the operation. |
| T | : | new() |
Definition at line 41343 of file KineticaFunctions.cs.
◆ getRecordsBySeries< T >() [2/2]
| inline |
Retrieves the complete series/track records from the given world_table_name based on the partial track information contained in the table_name .
This operation supports paging through the data via the offset and limit parameters.
In contrast to getRecords this returns records grouped by series/track. So if offset is 0 and limit is 5 this operation would return the first 5 series/tracks in table_name . Each series/track will be returned sorted by their TIMESTAMP column.
| T | The type of object being retrieved. |
| table_name | Name of the table or view for which series/tracks will be fetched, in [schema_name.]table_name format, using standard name resolution rules. |
| world_table_name | Name of the table containing the complete series/track information to be returned for the tracks present in the table_name , in [schema_name.]table_name format, using standard name resolution rules. Typically this is used when retrieving series/tracks from a view (which contains partial series/tracks) but the user wants to retrieve the entire original series/tracks. Can be blank. |
| offset | A positive integer indicating the number of initial series/tracks to skip (useful for paging through the results). The default value is 0. The minimum allowed value is 0. The maximum allowed value is MAX_INT. |
| limit | A positive integer indicating the maximum number of series/tracks to be returned. Or END_OF_SET (-9999) to indicate that the max number of results should be returned. The default value is 250. |
| options | Optional parameters. The default value is an empty Dictionary. |
| T | : | new() |
Definition at line 41439 of file KineticaFunctions.cs.
◆ GetRecordsBySeriesAsync< T >() [1/2]
| inline |
Retrieves the complete series/track records from the given world_table_name based on the partial track information contained in the table_name.
(async)
This operation supports paging through the data via the offset and limit parameters.
In contrast to getRecords this returns records grouped by series/track. So if offset is 0 and limit is 5 this operation would return the first 5 series/tracks in table_name. Each series/track will be returned sorted by their TIMESTAMP column.
| T | The type of object being retrieved. |
| request_ | Request object containing the parameters for the operation. |
| cancellationToken | Cancellation token to cancel the operation. |
| T | : | new() |
Definition at line 41383 of file KineticaFunctions.cs.
◆ GetRecordsBySeriesAsync< T >() [2/2]
| inline |
Retrieves the complete series/track records from the given world_table_name based on the partial track information contained in the table_name .
(async)
This operation supports paging through the data via the offset and limit parameters.
In contrast to getRecords this returns records grouped by series/track. So if offset is 0 and limit is 5 this operation would return the first 5 series/tracks in table_name . Each series/track will be returned sorted by their TIMESTAMP column.
| T | The type of object being retrieved. |
| table_name | Name of the table or view for which series/tracks will be fetched, in [schema_name.]table_name format, using standard name resolution rules. |
| world_table_name | Name of the table containing the complete series/track information to be returned for the tracks present in the table_name , in [schema_name.]table_name format, using standard name resolution rules. Typically this is used when retrieving series/tracks from a view (which contains partial series/tracks) but the user wants to retrieve the entire original series/tracks. Can be blank. |
| offset | A positive integer indicating the number of initial series/tracks to skip (useful for paging through the results). The default value is 0. The minimum allowed value is 0. The maximum allowed value is MAX_INT. |
| limit | A positive integer indicating the maximum number of series/tracks to be returned. Or END_OF_SET (-9999) to indicate that the max number of results should be returned. The default value is 250. |
| options | Optional parameters. The default value is an empty Dictionary. |
| cancellationToken | Cancellation token to cancel the operation. |
| T | : | new() |
Definition at line 41495 of file KineticaFunctions.cs.