Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 555541
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T11:49:31+00:00 2026-05-13T11:49:31+00:00

In our application we have number of AggregatorTypes (idea copied from SQL Server) i.e.

  • 0

In our application we have number of AggregatorTypes (idea copied from SQL Server)
i.e. MinAggregator MaxAggregator, CountAggregator, And SumAggregator.

Now I should check if Aggregator supports type of provided values. For Count it is not important. For Max and Min I use checking for IComparable.
But what to use for SUM?
I tried Converter but it also supports string.

Why there is no ISummable 🙂

Also IsNumeric like checking is not a solution for me. For example TimeSpan also can sum.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T11:49:31+00:00Added an answer on May 13, 2026 at 11:49 am

    Here is sample IsSummable method

    public bool IsSummable(Type type)
    try
    {
      ParameterExpression paramA = Expression.Parameter(type, "a"), paramB = Expression.Parameter(type, "b");
      BinaryExpression addExpression = Expression.Add(paramA, paramB);
      var add = Expression.Lambda(addExpression, paramA, paramB).Compile();
      var v = Activator.CreateInstance(type);
      add.DynamicInvoke(v, v);
      return true;
    }
    catch
    {
      return false;
    }
    }
    

    and IsAveragable function (what a weird name:) )

    public bool IsAveragable(Type type)
    try
    {
      ParameterExpression paramA = Expression.Parameter(type, "a"), paramB = Expression.Parameter(type, "b");
            // add the parameters together
            BinaryExpression addExpression = Expression.Add(paramA, paramB);
            var avg = Expression.Parameter(typeof(int), "b");
            var conv  = Expression.Convert(avg,type);
            BinaryExpression divideExpression = Expression.Divide(paramA, conv);
            // compile it
            var add = Expression.Lambda(addExpression, paramA, paramB).Compile();
            var divide = Expression.Lambda(divideExpression, paramA, avg).Compile();
            var v = Activator.CreateInstance(type);
            add.DynamicInvoke(v, v);
            divide.DynamicInvoke(v, 1);
                        return true;
    }
    catch
    {
      return false;
    }
    }
    

    part of the code taken from MiscUtil by Marc Gravell

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We have to deploy our application on a Windows 2008 64 bit server. As
In our application, we have a number of Windows Services (more than 30) that
We are using Oracle Weblogic 10.3 as our application server. We have multiple modules
I have a number laptops that run our application while connected to each other
We have an application that uses SQL Server 2008 R2 Express with Advanced Services.
Our application (using a SQL Server 2008 R2 back-end) stores data about remote hardware
in our application we have a Java applet running inside a .NET browser control.
In our application we have a little query that looks like this: var selectedAgents
In many places in our application we have code like this: using(RAPI rapi =
In our application we sometimes have to make minor GUI modifications for different customers:

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.