With the help of System. Linq. Dynamic, IQueryable sorts sorted strings,

Source: Internet
Author: User
Tags sorts

With the help of System. Linq. Dynamic, IQueryable sorts sorted strings,

When using Entity Framework, if there are multiple sorts, OrderBy (OrderByDescending) and ThenBy (ThenByDescending) are required)

If you want to sort by Name in ascending order and then by Id in descending order, then:

using (EFContext<Member> context = new EFContext<Member>()){    var lst = context.Table.OrderBy(m => m.Name).ThenByDescending(e => e.Id).ToList();    foreach (var item in lst)    {        Console.WriteLine("name:{0}, Id:{1}",item.Name,item.Id);    }}

Using System. Linq. Dynamic

First, you must reference System. Linq. Dynamic in the project. You can use Nuget to add references.

Introduce the namespace System. Linq. Dynamic

using System.Linq.Dynamic;

Modify the code above,

using (EFContext<Member> context = new EFContext<Member>()){    var lst = context.Table.OrderBy("Name asc,Id desc").ToList();    foreach (var item in lst)    {        Console.WriteLine("name:{0}, Id:{1}",item.Name,item.Id);    }}

The OrderBy () method imports a sort string.

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.