BCRepositoryExecuteSimpleQuery Method |
Returns a collection of documents matching the given query.
Namespace: BlueCieloECM.InnoCielo.Meridian.ServerAssembly: BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 4.0.0.0 (4.0.19.0)
Syntaxpublic BCReadOnlyCollection<BCDocument> ExecuteSimpleQuery(
BCSearchQuery searchQuery,
IEnumerable<string> attributeNames,
int sortOn,
Object scope
)
Public Function ExecuteSimpleQuery (
searchQuery As BCSearchQuery,
attributeNames As IEnumerable(Of String),
sortOn As Integer,
scope As Object
) As BCReadOnlyCollection(Of BCDocument)
public:
BCReadOnlyCollection<BCDocument^>^ ExecuteSimpleQuery(
BCSearchQuery^ searchQuery,
IEnumerable<String^>^ attributeNames,
int sortOn,
Object^ scope
)
member ExecuteSimpleQuery :
searchQuery : BCSearchQuery *
attributeNames : IEnumerable<string> *
sortOn : int *
scope : Object -> BCReadOnlyCollection<BCDocument>
Parameters
- searchQuery
- Type: BlueCieloECM.InnoCielo.Meridian.ServerBCSearchQuery
The folder search query to be executed.
- attributeNames
- Type: System.Collections.GenericIEnumerableString
The collection of attribute names that describes
the set of property values that is returned.
- sortOn
- Type: SystemInt32
The sort order of folders in the result collection.
- scope
- Type: SystemObject
The scope of the search. Can be .
Return Value
Type:
BCReadOnlyCollectionBCDocument
The collection of documents matching the given query.
See Also