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

  • Home
  • SEARCH
  • 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 415167
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T18:21:16+00:00 2026-05-12T18:21:16+00:00

I have a method that currently takes a Func<Product, string> as a parameter, but

  • 0

I have a method that currently takes a Func<Product, string> as a parameter, but I need it to be an Expression<Func<Product, string>>. Using AdventureWorks, here’s an example of what I’d like to do using the Func.

private static void DoSomethingWithFunc(Func<Product, string> myFunc)
{
    using (AdventureWorksDataContext db = new AdventureWorksDataContext())
    {
        var result = db.Products.GroupBy(product => new
        {
            SubCategoryName = myFunc(product),
            ProductNumber = product.ProductNumber
        });
    }
}

I would like it to look something like this:

private static void DoSomethingWithExpression(Expression<Func<Product, string>> myExpression)
{
    using (AdventureWorksDataContext db = new AdventureWorksDataContext())
    {
        var result = db.Products.GroupBy(product => new
            {
                SubCategoryName = myExpression(product),
                ProductNumber = product.ProductNumber
            });
    }
}

However, the problem I’m running into is that myExpression(product) is invalid (won’t compile). After reading some other posts I understand why. And if it wasn’t for the fact that I need the product variable for the second part of my key I could probably say something like this:

var result = db.Products.GroupBy(myExpression);

But I do need the product variable because I do need the second part of the key (ProductNumber). So I’m not really sure what to do now. I can’t leave it as a Func because that causes problems. I can’t figure out how to use an Expression because I don’t see how I could pass it the product variable. Any ideas?

EDIT: Here’s an example of how I would call the method:

DoSomethingWithFunc(product => product.ProductSubcategory.Name);
  • 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-12T18:21:17+00:00Added an answer on May 12, 2026 at 6:21 pm

    There’s no way to splice an expression tree that is represented as an Expression<T> object into a middle of a “tree literal” represented by lambda expression. You’ll have to construct an expression tree to pass to GroupBy manually:

    // Need an explicitly named type to reference in typeof()
    private class ResultType
    {
         public string SubcategoryName { get; set; }
         public int ProductNumber { get; set; }|
    }
    
    private static void DoSomethingWithExpression(
        Expression<Func<Product,
        string>> myExpression)
    {
        var productParam = Expression.Parameter(typeof(Product), "product");
        var groupExpr = (Expression<Func<Product, ResultType>>)Expression.Lambda(
            Expression.MemberInit(
               Expression.New(typeof(ResultType)),
               Expression.Bind(
                   typeof(ResultType).GetProperty("SubcategoryName"),
                   Expression.Invoke(myExpression, productParam)),
               Expression.Bind(
                   typeof(ResultType).GetProperty("ProductNumber"),
                   Expression.Property(productParam, "ProductNumber"))),
            productParam);
        using (AdventureWorksDataContext db = new AdventureWorksDataContext())
        {
            var result = db.Products.GroupBy(groupExpr);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 211k
  • Answers 212k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer The simplest thing is a "windowed sinc" filter: fs =… May 12, 2026 at 10:15 pm
  • Editorial Team
    Editorial Team added an answer The GetWindowPlacement function returns a WINDOWPLACEMENT structure which has a… May 12, 2026 at 10:15 pm
  • Editorial Team
    Editorial Team added an answer Here's a simple method to do it: The (ip >>… May 12, 2026 at 10:15 pm

Related Questions

I have a control and it provides a selection mechanism. However, the items that
I am writing an application which checks for conditions (ie if a bool is
We have a DLL that monitors changes in status and looks for events from
I have been trying to create a decorator that can be used with both

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.