Determines how the search results are merged for searches across multiple repositories.
Namespace: FileNet.Api.Constants
Assembly: FileNet.Api (in filenet.api.dll)
The merge mode can be either:
- The intersection of all classes found(
). The search results will contain the classes occurring in every repository searched.INTERSECTION - The union of all classes found (
). The search results will contain the classes occurring in any repository searched.UNION
When the merge mode is
and a class or property is not found in any repository, the following occurs:
- For classes, an inner join returns no rows, and an outer join returns nulls. Join types are specified in the
class.JoinOperator - For properties, the property value is
in a selection list orNull
clause, and is omitted from anWHERE
clause.ORDER BY
Namespace: FileNet.Api.Constants
Assembly: FileNet.Api (in filenet.api.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Enum MergeMode |
C# |
---|
public enum MergeMode |
C++ |
---|
public enum class MergeMode |
J# |
---|
public enum MergeMode |
JScript |
---|
public enum MergeMode |
Members
Description | |
---|---|
INTERSECTION | A constant representing a instance of type . This specifies that the search result is the intersection of the classes found across the repositories (the classes occurring in every repository searched). |
UNION | A constant representing a instance of type . This specifies that the search result is the union of the classes found across the repositories (the classes occurring in any repository searched). |