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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T17:22:26+00:00 2026-05-12T17:22:26+00:00

Say we’ve got a project that allows user to download things. On the main

  • 0

Say we’ve got a project that allows user to download things. On the main page, I want to show the Most downloaded files ordered by the number of download! All that using EF.

How can i do this !! I’ve tried many things with Group By (Its a nightmare when you’ve got a lot of informations in an object). And i still dunno how to do this…

var query = from details in m_context.TransactionDetails
                        where details.Chanson != null
                        group details by details.Items into AnItem
                        orderby AnItem.Count()
                        select new Item() {
                            IdItem = Chansons.Key.IdItem,
                            ItemState= Chansons.Key.ItemState,
                            [...This object got something like 20 including links to other objects ... ]
                        };

Anyone have an idea?

Thanks :o)

Oh and sorry for my english, I’m giving my best but im from Quebec (Usualy talk french).

  • 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-05-12T17:22:27+00:00Added an answer on May 12, 2026 at 5:22 pm

    Salut!

    I’m going to guess at your data model a little, here, but I don’t think you need to group:

    var query = from details in m_context.TransactionDetails
                where details.Chanson != null
                orderby details.Items.Count() descending
                select new Item
                {
                    IdItem = details.Chanson.IdItem,
                    ItemState= details.Chanson.ItemState,
                    // ...
                };
    

    Bonne chance!

    Update: For albums:

    var query = from details in m_context.TransactionDetails
                where details.DisqueCompact != null
                orderby details.Items.Count() descending
                select new Item 
                {
                    IdItem = details.DisqueCompact.IdItem,
                    ItemState= details.DisqueCompact.QuelqueChose...
                    // ...
                };
    

    You probably need two queries given your data model.

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

Sidebar

Related Questions

Say I have a method that returns this. Vector[ (PkgLine, Tree) ]() I want
say if I wanted to give every user that registered on my site a
Say if i have a master page in that i have a button if
Say, if we already have aScreen that points to the main screen, by UIScreen
Say I have a User model in JavaScript that looks something like this: var
Say you have a page callback from Module #1 using hook_menu(). You want to
Say I have an input consisting of 30 numbers, and I want the 1st,
Say I want to create a card class. and want to have enums for
Say I have some foo :: Maybe Int and I want to bind it
Say I have a byte array with 100,000 bytes in it. I want to

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.