Class CrossJoin
Cross join is a Cartesian join means Cartesian product of both the tables. This join does not need any condition to join two tables. This join returns records or rows that are multiplication of record number from both the tables means each row on left table will related to each row of right table.
Inheritance
System.Object
CrossJoin
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.Olap.MDXQueryParser
Assembly: Syncfusion.Olap.Base.dll
Syntax
public class CrossJoin
Constructors
CrossJoin()
Declaration
public CrossJoin()
Properties
FunctionName
Gets or sets the name of the function.
Declaration
public string FunctionName { get; set; }
Property Value
Type | Description |
---|---|
System.String | The name of the function. |
member
Gets or sets the member.
Declaration
public IMember member { get; set; }
Property Value
Type | Description |
---|---|
IMember | The member. |
tuple
Gets or sets the tuple.
Declaration
public Tuple tuple { get; set; }
Property Value
Type | Description |
---|---|
Tuple | The tuple. |
Methods
Validate()
Validates this instance.
Declaration
public bool Validate()
Returns
Type | Description |
---|---|
System.Boolean | A value that indicates whether this instance is valid. |