Esempio n. 1
0
        /// <summary>
        /// Returns the collection containing the direct children of the
        /// current dataset.
        /// </summary>
        /// <returns>The collection that contains the direct children of the current dataset.</returns>
        public IEnumerable <DatasetFacade> Children()
        {
            var children = m_Dataset.Children();

            return(from child in children select new DatasetFacade(child));
        }