Ejemplo n.º 1
0
 public void GetSupportedMethods()
 {
     Assert.That(
         AverageExpressionNode.GetSupportedMethods(),
         Is.EquivalentTo(
             new[]
     {
         GetGenericMethodDefinition(() => Queryable.Average((IQueryable <decimal>)null)),
         GetGenericMethodDefinition(() => Queryable.Average((IQueryable <decimal?>)null)),
         GetGenericMethodDefinition(() => Queryable.Average((IQueryable <double>)null)),
         GetGenericMethodDefinition(() => Queryable.Average((IQueryable <double?>)null)),
         GetGenericMethodDefinition(() => Queryable.Average((IQueryable <int>)null)),
         GetGenericMethodDefinition(() => Queryable.Average((IQueryable <int?>)null)),
         GetGenericMethodDefinition(() => Queryable.Average((IQueryable <long>)null)),
         GetGenericMethodDefinition(() => Queryable.Average((IQueryable <long?>)null)),
         GetGenericMethodDefinition(() => Queryable.Average((IQueryable <float>)null)),
         GetGenericMethodDefinition(() => Queryable.Average((IQueryable <float?>)null)),
         GetGenericMethodDefinition(() => Queryable.Average <object> (null, o => (decimal)0)),
         GetGenericMethodDefinition(() => Queryable.Average <object> (null, o => (decimal?)0)),
         GetGenericMethodDefinition(() => Queryable.Average <object> (null, o => (double)0)),
         GetGenericMethodDefinition(() => Queryable.Average <object> (null, o => (double?)0)),
         GetGenericMethodDefinition(() => Queryable.Average <object> (null, o => (int)0)),
         GetGenericMethodDefinition(() => Queryable.Average <object> (null, o => (int?)0)),
         GetGenericMethodDefinition(() => Queryable.Average <object> (null, o => (long)0)),
         GetGenericMethodDefinition(() => Queryable.Average <object> (null, o => (long?)0)),
         GetGenericMethodDefinition(() => Queryable.Average <object> (null, o => (float)0)),
         GetGenericMethodDefinition(() => Queryable.Average <object> (null, o => (float?)0)),
         GetGenericMethodDefinition(() => Enumerable.Average((IEnumerable <decimal>)null)),
         GetGenericMethodDefinition(() => Enumerable.Average((IEnumerable <decimal?>)null)),
         GetGenericMethodDefinition(() => Enumerable.Average((IEnumerable <double>)null)),
         GetGenericMethodDefinition(() => Enumerable.Average((IEnumerable <double?>)null)),
         GetGenericMethodDefinition(() => Enumerable.Average((IEnumerable <int>)null)),
         GetGenericMethodDefinition(() => Enumerable.Average((IEnumerable <int?>)null)),
         GetGenericMethodDefinition(() => Enumerable.Average((IEnumerable <long>)null)),
         GetGenericMethodDefinition(() => Enumerable.Average((IEnumerable <long?>)null)),
         GetGenericMethodDefinition(() => Enumerable.Average((IEnumerable <float>)null)),
         GetGenericMethodDefinition(() => Enumerable.Average((IEnumerable <float?>)null)),
         GetGenericMethodDefinition(() => Enumerable.Average <object> (null, o => (decimal)0)),
         GetGenericMethodDefinition(() => Enumerable.Average <object> (null, o => (decimal?)0)),
         GetGenericMethodDefinition(() => Enumerable.Average <object> (null, o => (double)0)),
         GetGenericMethodDefinition(() => Enumerable.Average <object> (null, o => (double?)0)),
         GetGenericMethodDefinition(() => Enumerable.Average <object> (null, o => (int)0)),
         GetGenericMethodDefinition(() => Enumerable.Average <object> (null, o => (int?)0)),
         GetGenericMethodDefinition(() => Enumerable.Average <object> (null, o => (long)0)),
         GetGenericMethodDefinition(() => Enumerable.Average <object> (null, o => (long?)0)),
         GetGenericMethodDefinition(() => Enumerable.Average <object> (null, o => (float)0)),
         GetGenericMethodDefinition(() => Enumerable.Average <object> (null, o => (float?)0))
     }));
 }
Ejemplo n.º 2
0
        /// <summary>
        /// Creates a <see cref="MethodInfoBasedNodeTypeRegistry"/> and registers all relevant <see cref="IExpressionNode"/> implementations in the <b>Remotion.Linq</b> assembly.
        /// </summary>
        /// <returns>
        /// A <see cref="MethodInfoBasedNodeTypeRegistry"/> with all <see cref="IExpressionNode"/> types in the <b>Remotion.Linq</b> assembly registered.
        /// </returns>
        public static MethodInfoBasedNodeTypeRegistry CreateFromRelinqAssembly()
        {
            var registry = new MethodInfoBasedNodeTypeRegistry();

            registry.Register(AggregateExpressionNode.GetSupportedMethods(), typeof(AggregateExpressionNode));
            registry.Register(AggregateFromSeedExpressionNode.GetSupportedMethods(), typeof(AggregateFromSeedExpressionNode));
            registry.Register(AllExpressionNode.GetSupportedMethods(), typeof(AllExpressionNode));
            registry.Register(AnyExpressionNode.GetSupportedMethods(), typeof(AnyExpressionNode));
            registry.Register(AsQueryableExpressionNode.GetSupportedMethods(), typeof(AsQueryableExpressionNode));
            registry.Register(AverageExpressionNode.GetSupportedMethods(), typeof(AverageExpressionNode));
            registry.Register(CastExpressionNode.GetSupportedMethods(), typeof(CastExpressionNode));
            registry.Register(ConcatExpressionNode.GetSupportedMethods(), typeof(ConcatExpressionNode));
            registry.Register(ContainsExpressionNode.GetSupportedMethods(), typeof(ContainsExpressionNode));
            registry.Register(CountExpressionNode.GetSupportedMethods(), typeof(CountExpressionNode));
            registry.Register(DefaultIfEmptyExpressionNode.GetSupportedMethods(), typeof(DefaultIfEmptyExpressionNode));
            registry.Register(DistinctExpressionNode.GetSupportedMethods(), typeof(DistinctExpressionNode));
            registry.Register(ExceptExpressionNode.GetSupportedMethods(), typeof(ExceptExpressionNode));
            registry.Register(FirstExpressionNode.GetSupportedMethods(), typeof(FirstExpressionNode));
            registry.Register(GroupByExpressionNode.GetSupportedMethods(), typeof(GroupByExpressionNode));
            registry.Register(GroupByWithResultSelectorExpressionNode.GetSupportedMethods(), typeof(GroupByWithResultSelectorExpressionNode));
            registry.Register(GroupJoinExpressionNode.GetSupportedMethods(), typeof(GroupJoinExpressionNode));
            registry.Register(IntersectExpressionNode.GetSupportedMethods(), typeof(IntersectExpressionNode));
            registry.Register(JoinExpressionNode.GetSupportedMethods(), typeof(JoinExpressionNode));
            registry.Register(LastExpressionNode.GetSupportedMethods(), typeof(LastExpressionNode));
            registry.Register(LongCountExpressionNode.GetSupportedMethods(), typeof(LongCountExpressionNode));
            registry.Register(MaxExpressionNode.GetSupportedMethods(), typeof(MaxExpressionNode));
            registry.Register(MinExpressionNode.GetSupportedMethods(), typeof(MinExpressionNode));
            registry.Register(OfTypeExpressionNode.GetSupportedMethods(), typeof(OfTypeExpressionNode));
            registry.Register(OrderByDescendingExpressionNode.GetSupportedMethods(), typeof(OrderByDescendingExpressionNode));
            registry.Register(OrderByExpressionNode.GetSupportedMethods(), typeof(OrderByExpressionNode));
            registry.Register(ReverseExpressionNode.GetSupportedMethods(), typeof(ReverseExpressionNode));
            registry.Register(SelectExpressionNode.GetSupportedMethods(), typeof(SelectExpressionNode));
            registry.Register(SelectManyExpressionNode.GetSupportedMethods(), typeof(SelectManyExpressionNode));
            registry.Register(SingleExpressionNode.GetSupportedMethods(), typeof(SingleExpressionNode));
            registry.Register(SkipExpressionNode.GetSupportedMethods(), typeof(SkipExpressionNode));
            registry.Register(SumExpressionNode.GetSupportedMethods(), typeof(SumExpressionNode));
            registry.Register(TakeExpressionNode.GetSupportedMethods(), typeof(TakeExpressionNode));
            registry.Register(ThenByDescendingExpressionNode.GetSupportedMethods(), typeof(ThenByDescendingExpressionNode));
            registry.Register(ThenByExpressionNode.GetSupportedMethods(), typeof(ThenByExpressionNode));
            registry.Register(UnionExpressionNode.GetSupportedMethods(), typeof(UnionExpressionNode));
            registry.Register(WhereExpressionNode.GetSupportedMethods(), typeof(WhereExpressionNode));

            return(registry);
        }
Ejemplo n.º 3
0
 public override void SetUp()
 {
     base.SetUp();
     _node = new AverageExpressionNode(CreateParseInfo(), null);
 }