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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T22:40:17+00:00 2026-05-17T22:40:17+00:00

I’m just in the early process of learning about expression trees. As far as

  • 0

I’m just in the early process of learning about expression trees.

As far as I understand, the good thing about them is that they can be parsed when they are used as parameters, so for instance:

Foo.Bar(x => x.Process == "On" && x.Name == "Goofy")

But how can I parse the expression when there is AND inside?

Maybe I’ve misunderstood it all, but then I can’t see the reason for using expressions? I’ve now looked at nearly hundreds of websites that all try to explain what an expression tree are and they all succeeded, expect they never explained what the use was – except the trivial explanation “An expression tree is not compiled….”

  • 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-17T22:40:17+00:00Added an answer on May 17, 2026 at 10:40 pm

    I have used Expressions to build a trivial Domain Specific Language. This is used in an actual application where I work, so it’s not a toy project.

    I basically created a fluent interface that allows me to build Predicate<T> delegates, something like:

    Predicate<MyClass> condition = (new ConditionBuilder()).GreaterThanConst(9)
                                                           .And()
                                                           .LessThanConst(4)
                                                           .ToPredicate();
    

    Each method adds the relevant expression to the current tree. Than ToPredicate compiles the expression to the delegate.

    The GreaterThanConst method looks something like:

    public ConditionBuilder GreaterThan(object constant)
    {
        condition = Expression.GreaterThan(Expression.Parameter(constant.GetType()), Expression.Constant(constant));
        return this;
    }
    

    Where condition is the member that holds the tree that’s being built (grown?).

    To parse your expression, you’d need to write something like:

    Expression<Func<YourClass, bool>> expr = x => x.Process == "On" && x.Name == "Goofy";
    

    Then you can look though the expression tree that is generated and see what’s there.

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

Sidebar

Related Questions

I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I have just tried to save a simple *.rtf file with some websites and
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I am trying to understand how to use SyndicationItem to display feed which is
I've got a string that has curly quotes in it. I'd like to replace
I have a small JavaScript validation script that validates inputs based on Regex. I
I have a French site that I want to parse, but am running into
I am doing a simple coin flipping experiment for class that involves flipping a
I know there's a lot of other questions out there that deal with this

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.