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

  • Home
  • SEARCH
  • 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 8350519
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T08:20:36+00:00 2026-06-09T08:20:36+00:00

Have a small problem with LINQ queries. Basically I have two lists, filled with

  • 0

Have a small problem with LINQ queries.

Basically I have two lists, filled with dates.

List<DateTime> start = GetListOfStartDates();
List<DateTime> end = GetListOfEndDates();
DateTime date = new DateTime(2012, 1, 1);

How do I perform a LINQ query, where I compare a date against the start and end date, basically in sense:

(start <= date && end >= date)

Obviously I understand that they are lists, so this does not work, how do I compare a single date against two lists of dates? Basically doing a between for a set of dates.

The start indices will always match end indices, start[7] will always match end[7]. I’m attempting to turn a mysql between-query into LINQ. So I’m looking for IF the given “date” is within any start-end pair.

  • 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-06-09T08:20:37+00:00Added an answer on June 9, 2026 at 8:20 am

    Assuming I’m interpreting your question correctly (see my comment above) I think you are better off doing this as a for loop instead of a LINQ query. I’d do something like this:

    public bool DateFallsInRange(IEnumerable<DateTime> startDates, IEnumerable<DateTime> endDates)
    {
        for (int index = 0; index < startDates.Count; index++)
        {
            if ((startDates[index] <= compareDate) && (compareDate <= endDates[index])) return true;
        }
        return false;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have small problem with Spring MVC. Basically what I'm trying to do is
I have a small problem with Smarty... I have two different template files in
I have a small problem here. I want to list my files from a
Im new to MVVM and have small problem. I have two user controls: parent
I am newbe to php. I have small problem to compare dates in php.
have small problem, and would very much appreciate help :) I should convert byte
I have a small problem and I've figured out where when and why it
I have a small problem which i can't seem to figure out. I tried
I have a small problem which i can't seem to solve myself. Look at
I have a small problem with the visibility of an ellipse. In runtime I

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.