IndexQuery Method | |
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
)
Public Function Query (
ParamArray columnFilter As ColumnFilter()
) As IEnumerable(Of Record)
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:
IEnumerableRecordAll records in the table that match the specified column filters.
Exceptions Remarks See Also