Compartilhar via


Método MDX.CrossJoin

Runs the Multidimensional Expressions (MDX) Crossjoin function on two sets.

Namespace:  Microsoft.AnalysisServices.AdomdServer
Assembly:  msmgdsrv (em msmgdsrv.dll)

Sintaxe

'Declaração
Public Shared Function CrossJoin ( _
    set1 As Set, _
    set2 As Set _
) As Set
'Uso
Dim set1 As Set 
Dim set2 As Set 
Dim returnValue As Set 

returnValue = MDX.CrossJoin(set1, _
    set2)
public static Set CrossJoin(
    Set set1,
    Set set2
)
public:
static Set^ CrossJoin(
    Set^ set1, 
    Set^ set2
)
static member CrossJoin : 
        set1:Set * 
        set2:Set -> Set
public static function CrossJoin(
    set1 : Set, 
    set2 : Set
) : Set

Parâmetros

Valor de retorno

Tipo: Microsoft.AnalysisServices.AdomdServer.Set
A set that contains the cross, or Cartesian, product of set1 and set2.

Comentários

The parameters, set1 and set2, must represent different hierarchies.

Consulte também

Referência

MDX Classe

Namespace Microsoft.AnalysisServices.AdomdServer