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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T21:24:11+00:00 2026-06-05T21:24:11+00:00

Hello everybody my linq to sql selection does not working on dateTime field for

  • 0

Hello everybody my linq to sql selection does not working on dateTime field

 for (DateTime i = FromDate; i < DateTime.Now; i = i.AddDays(1))
            {
                var Count = (from d in db.Users
                             where d.RegistrationDate.Value == i
                             select d.ID).Count();
            }

i have tried i.date but it does not works too

  • 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-05T21:24:13+00:00Added an answer on June 5, 2026 at 9:24 pm

    It looks like you are trying to get a count of all users who registered on a certain day. If so, I think you are best off using the group keyword to group together all users by registration date. You can then create a new anonymous type to contain by the date, and the count, like so:

    var Counts = (from d in db.Users
                 // filter down to only users registered between FromDate and Now
                 where (d.RegistrationDate.Value >= FromDate 
                     && d.RegistrationDate < DateTime.Now)
                 // Group all users together by Date of registration (assuming 
                 // RegistrationDate is a DateTime? field)
                 group d by d.RegistrationDate.Value.Date into date
                 // Get a new anonymous type that contains the date and the number
                 // of users registered on that date
                 select new { Date = date.Key, Count = date.Count() } );
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hello everybody I have a LINQ declaration like this : var query = from
Hello Everybody now i working with JSF 2.0 and EJB3 and i used Primefaces
Hello everybody! I have a SQL (see above) and i would like to know
Hello everybody let me give you the background first: I'm working on a project
Hello everybody Well my question is about sql commands... If I have 2 tables
Hello everybody I have some certs in SQL 2008 but am by no means
Hello everybody I am drawing dynamic table and I want to add header for
Hello everybody i have C++ tStringGrid I want to get string from specific cell
hello everybody i have a listbox within which is a datatemplate.Inside it is checkbox,textbox,label...Wat
Hello good fellas i'm sure everybody is cool.I'm about to start a tutorial about

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.