/LINQToTTree/LINQToTTreeLib/relinq/PairWiseAllExpressionNode.cs

# · C# · 43 lines · 30 code · 5 blank · 8 comment · 0 complexity · 3608ec8979e18d9f1fd330678a0e6833 MD5 · raw file

  1. using System.Collections.Generic;
  2. using System.Linq;
  3. using System.Linq.Expressions;
  4. using System.Reflection;
  5. using Remotion.Linq.Parsing.Structure.IntermediateModel;
  6. namespace LINQToTTreeLib.relinq
  7. {
  8. class PairWiseAllExpressionNode : ResultOperatorExpressionNodeBase
  9. {
  10. /// <summary>
  11. /// List of methods in the re-linq expression tree that can be parsed
  12. /// by this node parser.
  13. /// </summary>
  14. public static MethodInfo[] SupportedMethods = new[]
  15. {
  16. GetSupportedMethod (() => Helpers.PairWiseAll<object>((IEnumerable<object>) null, null)),
  17. GetSupportedMethod (() => Helpers.PairWiseAll<object>((IQueryable<object>) null, null))
  18. };
  19. private readonly LambdaExpression _test;
  20. /// <summary>
  21. /// Create the expression node
  22. /// </summary>
  23. /// <param name="parseInfo"></param>
  24. public PairWiseAllExpressionNode(MethodCallExpressionParseInfo parseInfo, LambdaExpression test)
  25. : base(parseInfo, null, null)
  26. {
  27. _test = test;
  28. }
  29. protected override Remotion.Linq.Clauses.ResultOperatorBase CreateResultOperator(ClauseGenerationContext clauseGenerationContext)
  30. {
  31. return new PairWiseAllResultOperator(_test);
  32. }
  33. public override System.Linq.Expressions.Expression Resolve(System.Linq.Expressions.ParameterExpression inputParameter, System.Linq.Expressions.Expression expressionToBeResolved, ClauseGenerationContext clauseGenerationContext)
  34. {
  35. return Source.Resolve(inputParameter, expressionToBeResolved, clauseGenerationContext);
  36. }
  37. }
  38. }