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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T16:02:05+00:00 2026-06-17T16:02:05+00:00

I am trying to compare 24 hour time format stored as a string to

  • 0

I am trying to compare 24 hour time format stored as a string to the current time as follows

    [AllowAnonymous]
    public ActionResult _ProgOn()
    {
        int i = (int)DateTime.Now.DayOfWeek;
        DateTime dt = DateTime.Now;
        var onNow = db.Programs
         .Where(u => u.PrOk == true)
         .Where(u => u.DaId == i)
         .Where(u => u.TimeOn == dt.ToString("HH:mm")); 
        return PartialView(onNow);

But that seems not to be acceptable to Linq query. I will be grateful if I am pointed to the right direction.

  • 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-17T16:02:06+00:00Added an answer on June 17, 2026 at 4:02 pm

    Pass time string to Linq query:

        int i = (int)DateTime.Now.DayOfWeek;
        string time = DateTime.Now.ToString("HH:mm");
    
        var onNow = from u in db.Programs
                    where u.PrOk &&
                          u.DaId == i &&
                          u.TimeOn == time
                    select u;
    
        return PartialView(onNow);
    

    Also you don’t need to compare boolean value with true/false. And I think query syntax looks better here.

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

Sidebar

Related Questions

I'm trying to show rows which have hour value (24H format) after current time.
I´m trying to compare the rows, with the current date and hour, $curDate =
I am trying to compare two tools execution time, which I have installed in
I am trying to compare a simple string from the R.string class but something
I trying to compare two dates (DateTime) in nHibernate linq: query = query.Where(l =>
I am trying to compare two lists of string in python. Some of the
I am trying to compare an encode_base64('test') to the string variable containing the base64
I'm trying to compare two different object in JSF. A String and an Integer,
I'm trying to compare a character array against a string like so: const char
Trying to compare a given Time between two times to see if it's within

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.