ResultSet Class

This object is the container of objects that were found from a query. It is also internally used to cache meta/schema data for all accessed properties from elements in the row collection. This reduces the memory footprint and gives some extra speed when having many object of the same type in the result set.

Definition

Namespace: Articy.Api
Assembly: QueryLayer (in QueryLayer.dll) Version: 1.0.0
C#
public class ResultSet
Inheritance
Object    ResultSet

Properties

Columns the descriptors for the columns
IdSet the HashSet of all ids returned by this query
RowMap a Dictionary of all ids/rows returned by this query
Rows all rows found by the query that has produced this result set

Methods

CalculateColumns 
DumpToCSV 
EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetTypeGets the Type of the current instance.
(Inherited from Object)
GetValue 
ToStringReturns a string that represents the current object.
(Inherited from Object)

Extension Methods

TraceError
(Defined by TraceHelper)
TraceInfo
(Defined by TraceHelper)
TraceWarning
(Defined by TraceHelper)

See Also