CBLQuerySelectResult
@interface CBLQuerySelectResult : NSObjectA CBLQuerySelectResult represents a returning value in each query result row.
- 
                  
                  Creates a CBLQuerySelectResult for the given property name. DeclarationObjective-C + (nonnull instancetype)property:(nonnull NSString *)property;ParameterspropertyThe property name. Return ValueThe CBLQuerySelectResult. 
- 
                  
                  Creates a CBLQuerySelectResult for the given property name and the alias name. DeclarationObjective-C + (nonnull instancetype)property:(nonnull NSString *)property as:(nullable NSString *)alias;ParameterspropertyThe property name. aliasThe alias name. Return ValueThe CBLQuerySelectResult. 
- 
                  
                  Creates a CBLQuerySelectResult for the given expression. DeclarationObjective-C + (nonnull instancetype)expression:(nonnull CBLQueryExpression *)expression;ParametersexpressionThe expression. Return ValueThe CBLQuerySelectResult. 
- 
                  
                  Creates a CBLQuerySelectResult for the given expression and the alias name. DeclarationObjective-C + (nonnull instancetype)expression:(nonnull CBLQueryExpression *)expression as:(nullable NSString *)alias;ParametersexpressionThe expression. aliasThe alias name. Return ValueThe CBLQuerySelectResult. 
- 
                  
                  Creates a CBLQuerySelectResult that returns all properties data. The query returned result will be grouped into a single CBLMutableDictionary object under the key of the data source name. DeclarationObjective-C + (nonnull instancetype)all;Return ValueThe CBLQuerySelectResult. 
- 
                  
                  Creates a CBLQuerySelectResult that returns all properties data. The query returned result will be grouped into a single CBLMutableDictionary object under the key of the data source name key or the given alias data source name if specified. DeclarationObjective-C + (nonnull instancetype)allFrom:(nullable NSString *)alias;ParametersaliasThe data source alias name Return ValueThe CBLQuerySelectResult. 
- 
                  
                  Not available. DeclarationObjective-C - (nonnull instancetype)init;
 CBLQuerySelectResult Class Reference
        CBLQuerySelectResult Class Reference