|  | CouchbaseUtilityGetByQuery Method  | 
 
            Gets documents from the database that correspond to the supplied query.
            
 
    Namespace: 
   Galactic.NoSql.Couchbase
    Assembly:
   Galactic.NoSql.Couchbase (in Galactic.NoSql.Couchbase.dll) Version: 1.3.0.499 (1.3.0.499)
 Syntax
Syntaxpublic override List<Object> GetByQuery(
	Object query
)
Public Overrides Function GetByQuery ( 
	query As Object
) As List(Of Object)
public:
virtual List<Object^>^ GetByQuery(
	Object^ query
) override
abstract GetByQuery : 
        query : Object -> List<Object> 
override GetByQuery : 
        query : Object -> List<Object> Parameters
- query
- Type: SystemObject
 The query to use when finding documents.
Return Value
Type: 
ListObjectA list of documents that correspond to the query supplied, or an empty list if there was an error, or the query did not produce any results.
 See Also
See Also