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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T18:11:04+00:00 2026-05-25T18:11:04+00:00

I am developing an ASP.NET MVC 3 application using C# and Razor. I have

  • 0

I am developing an ASP.NET MVC 3 application using C# and Razor.

I have a search form that looks like this:
searchform

The search form works in the following way:

  1. The user selects which property they want to search on.
  2. The user selects how they want to match the search string (e.g. contains, starts with, ends with, equals, etc).
  3. The user enters a search term and clicks Search.

The selections in the first drop down related directly to a property in my ADO.NET Entity Framework model class (and therefore directly to a table column).

Users need the ability to explicitly select which property and which matching method when searching, e.g. a user will explicitly search for all matches of process number that equals ‘132’.

My first approach was to use dynamic linq to construct a Where clause from the search criteria (see my original question). However I’m starting to think that this isn’t the best way to do it.

I’m also hoping for a solution that doesn’t require me to hard code the result for each property + matching criteria combination.

Any suggestions on how I should implement this search? It doesn’t have to be using my current search form, totally open to any other ideas that fit the requirements.

  • 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-25T18:11:05+00:00Added an answer on May 25, 2026 at 6:11 pm

    You can build expression tree for where predicate using code. For example,

    public static IQueryable<T> DynamicWhere<T>(this IQueryable<T> src, string propertyName, string value)
    {
        var pe = Expression.Parameter(typeof(T), "t");
        var left = Expression.Property(pe, typeof(T).GetProperty(propertyName));
        var right = Expression.Constant(value);
        // Illustrated a equality condition but you can put a switch based on some parameter
        // to have different operators
        var condition = Expression.Equal(left, right);
    
        var predicate = Expression.Lambda<Func<T, bool>>(condition, pe);
        return src.Where(predicate);
    }
    

    Use it as Orders.DynamicWhere(searchBy, searchValue). You can add one more parameter to accept the operator such as Equals, Greater Than etc to complete the function.

    See these links for more info:

    http://msdn.microsoft.com/en-us/library/bb882637.aspx

    http://msdn.microsoft.com/en-us/library/bb397951.aspx

    Also check list of methods on the Expression class to get an idea.

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

Sidebar

Related Questions

I am developing an application using Asp.net mvc and jquery. I'd like to use
I'm developing an application using asp.net mvc, NHibernate and DDD. I have a service
I'm interested in using Subsonic 3.0 for developing a new ASP.Net MVC application that
I have an ASP.NET MVC application that I'm working on. I've been developing it
I have started developing a full-web application by using the ASP .NET MVC 3
We are developing an application in ASP.Net MVC 3 using jQuery UI Dialog. This
I am developing an ASP.NET MVC 3 web application using Razor and C#. I
I'm developing an web application using asp.net MVC and jQuery. I have in my
I have just started developing a full-web application by using the ASP .NET MVC
I'm developing a web application using ASP .NET MVC 1.0 and jQuery (including the

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.