/// <summary>
 /// Initializes a new instance of the <see cref="JoinBuilder"/> class.
 /// </summary>
 /// <param name="parent">The parent.</param>
 /// <param name="joinType">Type of the join.</param>
 public JoinBuilder(JoinOperation parent, JoinType joinType)
 {
     this.parent = parent;
     parent.jointype = joinType;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="JoinBuilder"/> class.
 /// </summary>
 /// <param name="parent">The parent.</param>
 /// <param name="joinType">Type of the join.</param>
 public JoinBuilder(JoinOperation parent, JoinType joinType)
 {
     this.parent     = parent;
     parent.jointype = joinType;
 }