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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T19:06:33+00:00 2026-05-29T19:06:33+00:00

I have this method public Expression<Func<Auction, bool>> GetUnsetDatesAuctionsExpression() { if (condition) return GetAllUnsetDatesAuctionsExpression(); else

  • 0

I have this method

public Expression<Func<Auction, bool>> GetUnsetDatesAuctionsExpression()
        {
            if (condition)
                return GetAllUnsetDatesAuctionsExpression();
            else
                return (a =>
                        (membershipUser.ProviderUserKey != null) &&
                        (a.OwnerReference == (Guid)membershipUser.ProviderUserKey) &&
                        ((a.Starts == null) || (a.Ends == null)));
            }
        }

which calls this method

private Expression<Func<Auction, bool>> GetAllUnsetDatesAuctionsExpression()
        {
            return (a => (a.Starts == null) || (a.Ends == null));
        }

The issue is that in the above public method I have the below line

(a.Starts == null) || (a.Ends == null)

which is the same as the body of the expression in the private method.

Now, doing this, of course, does not work because you can’t AND a bool and an Expression

return (a =>
   (membershipUser.ProviderUserKey != null) &&
   (a.OwnerReference == (Guid)membershipUser.ProviderUserKey) &&
   (GetAllUnsetDatesAuctionsExpression));

So, the question is, how do I combine the call to the private method with

(membershipUser.ProviderUserKey != null) &&
   (a.OwnerReference == (Guid)membershipUser.ProviderUserKey)
  • 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-29T19:06:34+00:00Added an answer on May 29, 2026 at 7:06 pm

    Create a new expression as a combination of the two, see BinaryExpression:

    System.Linq.Expressions.BinaryExpression binaryExpression =
      System.Linq.Expressions.Expression.MakeBinary(
        System.Linq.Expressions.ExpressionType.AndAlso,
        firstExpression,
        secondExpression);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this method: public static Expression<Func<MyEntity, bool>> MyMethod(string someId) { return o =>
I have a method which have this signature public static IList<T> GetBy<T>(System.Linq.Expressions.Expression<Func<T, bool>> expression)
I have an extension method with the following signature: public static Expression<Func<T, bool>> And<T>(this
I have this generic method in my repository: public T GetFirstOrDefault(Expression<Func<T, bool>> where, Expression<Func<T,
I thought this was fixed in 4.0. I have this method public IQueryable<T> All(Expression<Func<T,object>>
I have the following generic method: public bool Any<TEntity>(Expression<Func<TEntity, bool>> whereCondition) where TEntity :
I have an extension generic method public static void AddError<TModel>( this ModelStateDictionary modelState, Expression<Func<TModel,
I have this extension method: public static string GetValueFor<TModel, TProperty>(this HtmlHelper<TModel> helper, Expression<Func<TModel, TProperty>>
I have this method: public bool CanExecute() And after 70 commits, I added an
I have a generic method: public void ExpressionBuilder<T>() where T: IEntity { Expression<Func<T, long>>

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.