码迷,mamicode.com
首页 > Web开发 > 详细

asp.net LINQ数据访问技术from where select order by子句

时间:2016-12-18 15:21:49      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:ted   pre   asc   sel   derby   erb   asp   style   object   


using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;


public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
int[] values = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 0 };
var value = from v in values
where v < 3 || v > 7
orderby v descending
select v;
Response.Write("查询结果:<br>");
foreach (var i in value)
{
Response.Write(i + "<br>");
}
}
}

 

技术分享

在LINO查询表达式中,orderby 升序用ascending关键字,降序用descending关键字

 

asp.net LINQ数据访问技术from where select order by子句

标签:ted   pre   asc   sel   derby   erb   asp   style   object   

原文地址:http://www.cnblogs.com/luxiaoyao/p/6194275.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!