Пример #1
0
            public ICriteria Fetch(SelectMode selectMode, string associationPath, string alias)
            {
                if (!string.IsNullOrEmpty(alias))
                {
                    root.Fetch(selectMode, associationPath, alias);
                    return(this);
                }

                root.Fetch(selectMode, string.IsNullOrEmpty(associationPath) ? path : StringHelper.Qualify(path, associationPath), null);
                return(this);
            }