Skip to content

ReturningColumnsType

Namespace: ThinkGeo.Core

This enumeration provides some options when querying a feature.

public enum ReturningColumnsType

Inheritance ObjectValueTypeEnumReturningColumnsType
Implements IComparable, IFormattable, IConvertible

Remarks:

Three options are provided in the query system that can cover all possible cases. Option 1 is to use the ReturningColumnsType.NoColumns, which will return no columns at all. Option 2 is to use the ReturningColumnsType.AllColumns, which will return all columns. Option 3 is used when you want to return parts of the columns in the feature; in this case you should pass in an (IEnumerable[string] returningColumnNames) instead of using this enumeration directly.

Fields

Name Value Description
NoColumns 0 Return no column option.
AllColumns 1 Return all columns option.