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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T04:08:41+00:00 2026-05-24T04:08:41+00:00

I find myself using the ‘pattern’ below rather unsettlingly often, when I want to

  • 0

I find myself using the ‘pattern’ below rather unsettlingly often, when I want to select entities with based only on the date part of a DateTime property. EF doesn’t parse the DateTime.Date property to T-SQL, so I end up using this code:

var nextDay = raceDate.Date.AddDays(1);
return EntityContext.RacingInfoes.SingleOrDefault(ri => ri.RaceDate >= raceDate && ri.RaceDate < nextDay);

It’s the most readable solution I have found so far, but I don’t like repeating it everywhere. However, I can’t encapsulate it in any method as that method is not recognised by the Linq to Entities parser. Is there anything I can do about this?

  • 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-24T04:08:41+00:00Added an answer on May 24, 2026 at 4:08 am

    You can encapsulate it by writing a method like this:

    Expression<Func<T, bool>> OnDate<T>(Expression<Func<T, DateTime>> selector,
                                        DateTime date)
    {
        var nextDay = date.Date.AddDays(1);
        // Build up an expression tree, using Expression.AndAlso etc to
        // compare the result of applying the selector with both date and nextDay
    }
    

    Then you’d write:

    return EntityContext.RacingInfoes.SingleOrDefault(Helper.OnDate(x => x.RaceDate),
                                                      raceDate);
    

    (OnDate is a bad name, but you see what I mean…)

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

Sidebar

Related Questions

I find myself using the current pattern quite often in my code nowadays var
I often find myself using Integers to represent values in different spaces. For example...
Although using SQL FOR XML EXPLICIT is cumbersome, I find myself using it often.
While using Vim (at home and at work), I often find myself doing similar
I find myself using this method a ton to perform actions based on a
I find myself often repeating the following pattern of operations. I usually go into
I find myself using the Open Group's base specifications quite a bit when I
I find myself using the ResolveUrl function a lot in my aspx pages but
I find myself using Resharper's convert to auto property refactoring a lot to remove
I find myself using a combination of global vars and nsrunloop to force synchronization

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.