Beispiel #1
0
 /// <summary>
 /// Visitor pattern method for <see cref="T:System.Data.Entity.Core.Common.CommandTrees.DbAndExpression" />.
 /// </summary>
 /// <param name="expression"> The DbAndExpression that is being visited. </param>
 /// <exception cref="T:System.ArgumentNullException">
 /// <paramref name="expression" />
 /// is null
 /// </exception>
 public override void Visit(DbAndExpression expression)
 {
     Check.NotNull <DbAndExpression>(expression, nameof(expression));
     this.VisitBinaryExpression((DbBinaryExpression)expression);
 }
Beispiel #2
0
        /// <summary>
        /// Visitor pattern method for <see cref="DbAndExpression" />.
        /// </summary>
        /// <param name="expression"> The DbAndExpression that is being visited. </param>
        /// <exception cref="ArgumentNullException">
        /// <paramref name="expression" />
        /// is null
        /// </exception>
        public override void Visit(DbAndExpression expression)
        {
            Check.NotNull(expression, "expression");

            VisitBinaryExpression(expression);
        }
 /// <summary>
 ///     When overridden in a derived class, implements the visitor pattern for
 ///     <see
 ///         cref="T:System.Data.Entity.Core.Common.CommandTrees.DbAndExpression" />
 ///     .
 /// </summary>
 /// <param name="expression">
 ///     The <see cref="T:System.Data.Entity.Core.Common.CommandTrees.DbAndExpression" /> that is visited.
 /// </param>
 public abstract void Visit(DbAndExpression expression);
Beispiel #4
0
 /// <summary>
 /// When overridden in a derived class, implements the visitor pattern for
 /// <see
 ///     cref="T:System.Data.Entity.Core.Common.CommandTrees.DbAndExpression" />
 /// .
 /// </summary>
 /// <returns>A result value of a specific type.</returns>
 /// <param name="expression">
 /// The <see cref="T:System.Data.Entity.Core.Common.CommandTrees.DbAndExpression" /> that is being visited.
 /// </param>
 public abstract TResultType Visit(DbAndExpression expression);