|
CFMongoDB | ||||
FRAMES |
WEB-INF.cftags.componentcfmongodb.core.SearchResult
public class SearchResult
Constructor Summary | |
---|---|
init([any mongoCursor], [any sort], [any mongoUtil])
|
Method Summary | |
---|---|
any |
asArray()
Converts all cursor elements into a ColdFusion structure and returns them as an array of structs |
any |
asCursor()
The fastest return type |
any |
explain()
Mongo's native explain command |
any |
getQuery()
The criteria used for the query |
any |
getSort()
The sort used for the query |
any |
size()
The number of elements in the result, after limit and skip are applied |
any |
totalCount()
The total number of elements for the query, before limit and skip are applied |
Methods inherited from class WEB-INF.cftags.component |
---|
|
Constructor Detail |
---|
public init([any mongoCursor], [any sort], [any mongoUtil])
mongoCursor
sort
mongoUtil
Method Detail |
---|
public any asArray()
public any asCursor()
public any explain()
public any getQuery()
public any getSort()
public any size()
public any totalCount()
|
CFMongoDB | ||||
FRAMES |