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 9114841
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T04:17:28+00:00 2026-06-17T04:17:28+00:00

I have a lambda expression that I’d like to be able to pass around

  • 0

I have a lambda expression that I’d like to be able to pass around and reuse. Here’s the code:

public List<IJob> getJobs(/* i want to pass the lambda expr in here */) {
  using (SqlConnection connection = new SqlConnection(getConnectionString())) {
    connection.Open();
    return connection.Query<FullTimeJob, Student, FullTimeJob>(sql, 
      (job, student) => {         
        job.Student = student;
        job.StudentId = student.Id;
        return job;
        },
        splitOn: "user_id",
        param: parameters).ToList<IJob>();   
  }   

The key here, is I want to be able to pass the lambda expression that I’m using here into the method that’s calling this code, so I can reuse it. The lambda expression is the second argument inside my .Query method. I’m assuming I’d want to use an Action or Func, but I’m not quite sure what the syntax is for this or how it quite works. Can someone please give me an example?

  • 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-06-17T04:17:29+00:00Added an answer on June 17, 2026 at 4:17 am

    Use a Func<T1, T2, TResult> delegate as the parameter type and pass it in to your Query:

    public List<IJob> getJobs(Func<FullTimeJob, Student, FullTimeJob> lambda)
    {
      using (SqlConnection connection = new SqlConnection(getConnectionString())) {
        connection.Open();
        return connection.Query<FullTimeJob, Student, FullTimeJob>(sql, 
            lambda,
            splitOn: "user_id",
            param: parameters).ToList<IJob>();   
      }  
    }
    

    You would call it:

    getJobs((job, student) => {         
            job.Student = student;
            job.StudentId = student.Id;
            return job;
            });
    

    Or assign the lambda to a variable and pass it in.

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

Sidebar

Related Questions

I have a simple lambda expression that goes something like this: x=> x.Lists.Include(l =>
I have the following code that helps me build a lambda expression via reflection.
I have a lambda expression that currently looks like this: item => Reports.Add(item) I
Possible Duplicate: How to pass a lambda expression in Elisp I have following code:
I have an inline lambda expression that I would like to use throughout my
I have the lambda expression like below Projects.Where(Project => (Project.PostalCode == 5000)) Its generating
I have a tree expression that looks like this: .Block( System.Object $instance, MyType2 $result)
I have an Expression that is used to get a list of items from
I have a lambda expression tree issue that I can’t figure out. I am
I need to pass in a where lambda expression that'll be used in a

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.