コード例 #1
0
 /// <summary>
 /// Sets the left part of the join
 /// </summary>
 /// <value>The left.</value>
 public SortMergeJoinOperation Left(IOperation value)
 {
     left.Register(value);
     leftRegistered = true;
     return(this);
 }
コード例 #2
0
 /// <summary>
 ///     Sets the left part of the join
 /// </summary>
 /// <value>The left.</value>
 public NestedLoopsJoinOperation Left(IOperation value)
 {
     left.Register(value);
     leftRegistered = true;
     return(this);
 }
コード例 #3
0
 /// <summary>
 /// Sets the right part of the join
 /// </summary>
 /// <value>The right.</value>
 public SortMergeJoinOperation Right(IOperation value)
 {
     right.Register(value);
     return(this);
 }
コード例 #4
0
 /// <summary>
 ///     Sets the right part of the join
 /// </summary>
 /// <value>The right.</value>
 public NestedLoopsJoinOperation Right(IOperation value)
 {
     right.Register(value);
     return(this);
 }