ibi Patterns - Search 6.0.0 .NET API |
NetricsJoin Constructor (String, Int32, Boolean) |
See AlsoExample |
![]() ![]() |
Create a NetricsJoin object for searching related tables in an ibi™ Patterns - Search Server.
Namespace: NetricsServerInterface
Assembly: NetricsServerInterface (in NetricsServerInterface.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Sub New( _ ByVal parent_tbl As String, _ ByVal join_type As Integer, _ ByVal multi_parent As Boolean _ ) |
C# |
---|
public NetricsJoin( string parent_tbl, int join_type, bool multi_parent ) |
C++ |
---|
public: NetricsJoin( String parent_tbl, int join_type, bool multi_parent ) sealed |
J# |
---|
public NetricsJoin( string parent_tbl, int join_type, bool multi_parent ) |
JScript |
---|
public function NetricsJoin( parent_tbl : String, join_type : int, multi_parent : bool ) |
Parameters
- parent_tbl
- Name of the parent join table. Required.
- join_type
- One of: JOIN_FULL_RECORDS_ONLY, JOIN_FULL_AND_PARTIALS, JOIN_FULL_AND_ORPHANS, or JOIN_ALL_RECORD_TYPES.
- multi_parent
- If true, each record from the parent table may have multiple combinations returned in a search result set. If false, only the one best matching combination for each parent record is returned.
Remarks
This creates an incomplete join specification. The addChild method must be called to add one or more child tables before this join specification can be used in a search.