Click or drag to resize

IndexQuery Method

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Performs a query of this table using a specified index. A set of filters can also be specified to narrow the result set.

Namespace:  Telogis.GeoBase.Transactional
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
public IEnumerable<Record> Query(
	params ColumnFilter[] columnFilter
)

Parameters

columnFilter
Type: Telogis.GeoBase.TransactionalColumnFilter
An array of ColumnFilter objects to filter the result set. Every Record returned by the query will satisfy all specified filters. If you don't want to filter the results set, specify a zero-length array.

Return Value

Type: IEnumerableRecord
All records in the table that match the specified column filters.
Exceptions
ExceptionCondition
OperationOutsideTransactionExceptionThrown when an operation is attempted outside a transaction.
Remarks
This method must be called after the TransactionalRepository has been instructed to start a transaction by calling BeginTransaction.
See Also