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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T05:35:27+00:00 2026-06-12T05:35:27+00:00

What I am attempting to accomplish here is return 1 car per year for

  • 0

What I am attempting to accomplish here is return 1 car per year for ten years.
what I am getting though is 10 cars that are all 2013 cars.
This should sort by year 2013 2012 2011 etc.. It should be the car with the most recalls for that given year.

public static IEnumerable<MakeModel> mostrecalledmodelbyYear
{
    get
    {
        var groups = from t in DBCacheHelper.recallslist
                        where t.YEARTXT != "9999"
                        group t by new { t.YEARTXT, t.MODELTXT, t.MAKETXT } into g
                        select new MakeModel() { MODELTXT = g.Key.MODELTXT, MAKETXT = g.Key.MAKETXT, Frequency = g.Count(),YEARTXT = Convert.ToInt32(g.Key.YEARTXT) };

        return groups.OrderByDescending(g => g.YEARTXT).Take(10);
    }
}
  • 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-12T05:35:28+00:00Added an answer on June 12, 2026 at 5:35 am

    Should be something like that

    var query= 
    (from t in DBCacheHelper.recallslist
    where t.YEARTXT != "9999"
    group t by t.YEARTXT into g
    let q = g.GroupBy(t => new {t.MODELTXT, T.MAKETXT})
             .Select(g2 => new {
                   key = g2.Key,
                   freq = g2.Count()
                })
             .OrderByDescending(t => t.freq)
    let max = q.FirstOrDefault()
    select new MakeModel {
       MODELTXT = max.key.MODELTXT,
       MAKETXT = max.key.MAKETXT,
       Frequency = max.freq,
       YEARTXT = g.Key//care, Convert.ToInt32 won't work in linqtoentities 
    })
    .OrderByDescending(f => f.YEARTXT)
    .Take(10);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Here is my contrived example that illustrates what I am attempting to accomplish. I
Ok, let me try to clearly explain what I'm attempting to accomplish here. Basically,
Ok, everything is 'functionally' working with what I am attempting to accomplish and once
Attempting to make a NSObject called 'Person' that will hold the login details for
I am attempting to implement xmpp chat/collaboration between two C# desktop clients that exchange
I'm attempting to transform this data: ItemID MonthAsInt Month Year InvType Quantity 4643 4
TL;DR version: Please confirm (or if not, provide assistance) that I'm getting SQL Server
I have a straight-forward task I'm attempting to accomplish. I have the mechanics down,
This is basically a menu that doesn't refresh the page. I am attempting to
I'm attempting to make a select box that when a user selects an option,

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.