Represents Mdx navigation function that can be applied to MdxMember.
Inheritance: MdxExpressionBase
Example #1
0
        /// <summary>
        /// Appends the specified navigation function and returns the updated current instance of <see cref="MdxMember"/>.
        /// </summary>
        /// <param name="function">Specified navigation function.</param>
        /// <returns>Returns the updated current instance of <see cref="MdxMember"/>.</returns>
        public MdxMember WithFunction(MdxNavigationFunction function)
        {
            _navigationFunctions.Add(function);

            return(this);
        }
Example #2
0
        /// <summary>
        /// Appends the specified navigation function and returns the updated current instance of <see cref="MdxMember"/>. 
        /// </summary>
        /// <param name="function">Specified navigation function.</param>
        /// <returns>Returns the updated current instance of <see cref="MdxMember"/>.</returns>
        public MdxMember WithFunction(MdxNavigationFunction function)
        {
            _navigationFunctions.Add(function);

            return this;
        }