Exemplo n.º 1
0
        private void AddJoin(QueryModel queryModel, NhJoinClause joinClause)
        {
            joinClause.ParentJoinClause = _currentJoin;
            if (_currentJoin != null)
            {
                // Match the parent join type
                joinClause.MakeInner();
            }

            queryModel.BodyClauses.Add(joinClause);
        }