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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T13:55:47+00:00 2026-06-08T13:55:47+00:00

Morning i would like to know how to do this bit of (MS) SQL

  • 0

Morning i would like to know how to do this bit of (MS) SQL in LINQ…

 SELECT CONVERT(CHAR(10),orderDate,110)  AS OrderDate, 
 SUM(1) AS TotalOrders 
 FROM Orders
 WHERE OrderDate>getdate()-30
 GROUP BY CONVERT(CHAR(10),orderDate,110)
 ORDER BY OrderDate DESC

Many thanks in advance.

UPDATE
I ended using and edited version of the solutions provided below, thought i would share it…

 using (DataDataContext dc = new DataDataContext())
        {
            var query = from o in dc.Orders
                        where o.orderDate > DateTime.Now.AddDays(-30)
                        let dt = o.orderDate
                        group o by new DateTime(dt.Year, dt.Month, dt.Day) into g
                        select new OrderCounts
                        {
                            OrderDate = String.Format("{0:d}", g.Key.Date),
                            TotalOrders = g.Count()
                        };

            query.GroupBy(o => o.OrderDate);
            query.OrderBy(o => o.OrderDate);

            return query.ToList();
        }
  • 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-08T13:55:49+00:00Added an answer on June 8, 2026 at 1:55 pm
    var result =(from s in Orders
                 where s.OrderDate > DateTime.Now.AddDays(-30)
                 group s by new { date = s.OrderDate.ToString() } into g
                 // or use ((DateTime)s.OrderDate).ToShortDateString() instead of s.OrderDate.ToString()
                 select new
                 {
                      OrderDate = g.Key.date,
                      TotalOrders = g.Count()
                 }).OrderByDescending(x=>x.OrderDate);;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Morning, I would like to know how to write the following SQL statement in
Morning all, I know that this sounds like a simple referencing problem from the
Morning, I would like to know how to increase the number by 1 in
Morning, I would like to know how i could add two prices from my
Good morning! I would like to ask some help from you guys on how
Good morning, I have mysql queries where I would like to calculate percentage of
Good morning, I would like the code in my controller to look something like
I use visual studio 2008, and I would like to know if it is
Short version Need to distribute nightly builds to 70+ people each morning, would like
Good morning I would like to enquire as to how to read a list

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.