123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ant.DbExpressions
- {
- public class DbAndExpression : DbBinaryExpression
- {
- public DbAndExpression(Type type, DbExpression left, DbExpression right)
- : base(DbExpressionType.And, type, left, right)
- {
- }
- public override T Accept<T>(DbExpressionVisitor<T> visitor)
- {
- return visitor.Visit(this);
- }
- }
- }
|