DataAccessFramework.Querying.Join.Join C# (CSharp) Method

Join() public method

public Join ( TableBase left, QueryTable right, JoinType joinType ) : System
left TableBase
right QueryTable
joinType JoinType
return System
        public Join(TableBase left, QueryTable right, JoinType joinType)
        {
            _left = left;
            _right = right;
            _joinType = joinType;
        }