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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T08:08:59+00:00 2026-05-23T08:08:59+00:00

var Customer = (from c in DNAContextSQL.Customers where c.LastName != orderby c.PKID_Customer descending select

  • 0
var Customer = (from c in DNAContextSQL.Customers
                                where c.LastName != ""
                                orderby c.PKID_Customer descending
                                select new
                                {
                                    c.PKID_Customer,
                                    c.OrganizationName,
                                    c.FirstName,
                                    c.LastName,
                                    c.Phone,
                                    c.Extension
                                }).Distinct().ToList();

I know this is basic. I can’t find any good reason why it’s not working though. The queries sent to SQL Profiler don’t seem to have an order by clause in them.

Any ideas?

I can get it to work with .OrderByDescending(...) but would like to know the reason behind this madness.

  • 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-23T08:08:59+00:00Added an answer on May 23, 2026 at 8:08 am

    The distinct is probably messing up the order by try calling the orderBy after the distinct()

    var Customer = (from c in DNAContextSQL.Customers
                    where c.LastName != ""
                    select new
                       {
                          c.PKID_Customer,
                          c.OrganizationName,
                          c.FirstName,
                          c.LastName,
                          c.Phone,
                          c.Extension
                        }
                    ).Distinct().OrderByDescending(c=>c.PKID_Customer).ToList();
    

    This is happening because you first select a set of rows that are ordered by the PKID_Customer (and they are ordered until you call the distinct() method), and after that the Distinct() method rearranges them into a new distinct unordered set of records.

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

Sidebar

Related Questions

The following SQL SELECT * FROM customers converted to this in LINQ var customers
Does anyone know how to write this var q = from c in customers
I need to do the following thing: var a = from c in DB.Customers
Does something like this affect performance badly? var myQuery = from c in Customers
public tblCustomerDetail GetCustomerDetailsByID(long ID) { var customer = from c in DataContext.GetTable<tblCustomerDetail>() where c.ID
Here is the code: using (var context = new AventureWorksDataContext()) { IEnumerable<Customer> _customerQuery =
I have linq query as follows: var result = (from Customer cust in db
I am trying to convert the following SQL into NHibernate: SELECT * FROM dbo.Customer
I have the following query: var MyQuery = from e in ContractContext.Equipments.Include(Manufacturers) where e.Customers.ID
I have this in HomeController : public ActionResult Details(string id) { var customer =

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.