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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T08:08:58+00:00 2026-05-15T08:08:58+00:00

When I use datacontext.News .Where(p => p.status == true) .Where(p => p.date <= DateTime.Now)

  • 0

When I use

datacontext.News
    .Where(p => p.status == true)
    .Where(p => p.date <= DateTime.Now)
    .ToList();

the system will return no results;

When I use

datacontext.News
    .Where(p => p.status == true)
    .ToList()
    .Where(p => p.date <= DateTime.Now)
    .ToList();

system will return expected results. Can anyone tell me what’s up?

Thanks in advance !

  • 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-15T08:08:59+00:00Added an answer on May 15, 2026 at 8:08 am

    I best guess is that the time settings on your database server differ from that on your developer machine (or the machine you run .NET on).

    The difference between the two snippets is that in the second snippet the condition p.date <= DateTime.Now is executed locally, and not on the database server.

    If you want to use local time, you can do this:

    var now = DateTime.Now;
    var newNews = datacontext.News
        .Where(p => p.status == true)
        .Where(p => p.date <= now)
        .ToList();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

To bind to the current DataContext in XAML you can use: <TextBlock Text={Binding} />
Is there any way to use DataContext to execute some explicit SQL and return
I'm using System.Data.Linq.DataContext file for accessing a mdf Database I want to use the
I have a question regarding a problem with L2S, Autogenerated DataContext and the use
I am building an application which requires me to make use of DataContext's inside
I am trying to use unity to automatically inject a datacontext on my repository
In my DALs I currently use a new DataContext instance for each method, i.e.
How can I use a property trigger in a style (or another method) to
I am a HUGE LINQ2SQL Fan. But I use a lot of DataContext in
I use MVVM for my application, the DataContext of controls is assigned in my

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.