whereClause property
The where clause of the generate layer option.
The where clause only applies when GenerateLayerOption.queryOption is GenerateLayerQueryOption.useFilter.
The candidate features from a where clause are also filtered by GenerateGeodatabaseParameters.extent if GenerateLayerOption.useGeometry is true.
Implementation
String get whereClause {
final stringHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_GenerateLayerOption_getWhereClause(
_handle, errorHandler);
});
return stringHandle.toDartString();
}
Implementation
set whereClause(String value) {
final coreValue = _CString(value);
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_GenerateLayerOption_setWhereClause(
_handle, coreValue.bytes, errorHandler);
});
}