You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ExpressionVisitorDebugger.cs 427B

1234567891011121314151617
  1. using System.Linq.Expressions;
  2. namespace Luticate2.Utils.DataAccess.Npgsql
  3. {
  4. public class ExpressionVisitorDebugger : ExpressionVisitor
  5. {
  6. protected override Expression VisitUnary(UnaryExpression node)
  7. {
  8. return base.VisitUnary(node);
  9. }
  10. protected override Expression VisitBinary(BinaryExpression node)
  11. {
  12. return base.VisitBinary(node);
  13. }
  14. }
  15. }