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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T05:03:41+00:00 2026-06-07T05:03:41+00:00

I use the code gave on Stackoverflow by Marc Gravell here : http://goo.gl/57nW2 The

  • 0

I use the code gave on Stackoverflow by Marc Gravell here :
http://goo.gl/57nW2

The code :

var param = Expression.Parameter(typeof (Foo));
var pred = Expression.Lambda<Func<Foo, bool>>(
    Expression.Call(
        Expression.PropertyOrField(param, fieldName),
        "StartsWith",null,
        Expression.Constant(stringToSearch)), param);

Now, I’d like combine several argument, sample :

    public void BuildPredicate(string[] typeSearch, string[] field, string searchValue)
    {
       //Content
       //typeSearch = new string[] {"Contains", "StartsWith", "StartsWith" };
       //field = new string[] { "FieldA", "FieldB", "FieldC" };

      //FieldA contains searchValue and FieldB startWith searchValue and FieldC startWith searchValue
    }

An idea ?

Thanks,

  • 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-07T05:03:42+00:00Added an answer on June 7, 2026 at 5:03 am

    You can simply loop over all operations on all fields and build up a Expression tree containing an OrElse clause for each type/field combination

    var expressions = from type in typeSearch
                      from field in fields
                      select Expression.Call(
                        Expression.PropertyOrField(param, field),
                        type, null,
                        Expression.Constant(stringToSearch));
    
    Expression body = Expression.Constant(false);
    foreach (Expression expression in expressions)
    {
        body = Expression.OrElse(body, expression);
    }
    
    var result = Expression.Lambda<Func<Foo, bool>>(body, param);
    

    And as requested, an example including calls to ToUpper:

    var expressions = from type in typeSearch
                      from field in fields
                      select Expression.Call(
                        Expression.Call(
                            Expression.PropertyOrField(param, field),
                            "ToUpper", null),
                        type, null,
                        Expression.Constant(stringToSearch));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Here's the situation: We have some generic graphics code that we use for one
a kind user here gave me some code to work with for a command
A senior member here gave me this code: public static string Truncate(this string value,
Hi I've seen the answer here http://facebook.stackoverflow.com/questions/8982025/how-to-extend-access-token-validity-since-offline-access-deprecation and gave it a go but I'm
Many ARIA demonstration websites use code such as: <label for=name id=label-name>Your Name</label> <input id=name
I want to use code beside files for my views in my ASP.NET MVC
Why cant i use code nuggets to set a control property??For example a validationgroup
I'm attempting to use code I've found that uses Win32. However, I'm getting this
how does one use code to do this: produce 15 random numbers [EDIT: from
I have a couple of libraries that use code similar to the following one.

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.