博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C# Linq
阅读量:4983 次
发布时间:2019-06-12

本文共 3185 字,大约阅读时间需要 10 分钟。

LINQ- Language Integrated Query 语言集成查询

LINQ通过对象的方式对数据库进行描述。

LINQ是一种能够快速对大部分数据源进行访问和数据整合的一种技术,使用相同的基本查询表达式模式类查询和转换SQL数据库、ADO.NET数据集、XML文档和流已经.NET集合中的数据。

从.NET3.5开始引入LINQ

LINQ to Objects

LINQ to DataSet

LINQ to SQL

LINQ to Entities

LINQ to XML

命名空间

System.Data.Linq  该命名空间包含支持与LINQ to SQL应用程序中的关系数据库进行交互的类

System.Data.Linq.Mapping   该命名空间包含用于生成表示关系数据库的结构和内容的LINQ to SQL对象模型的类

System.Data.Linq.SqlClient   该命名空间包含与SQL Server进行通信的提供程序类,已经包含查询帮助器方法的类

System.Linq      该命名空间提供支持使用语言集成查询(LINQ)进行查询的类和接口

System.Linq.Expression   该命名空间包含一些类,接口和枚举,它们使语言级别的代码表达式能够表示为表达式树形式的对象

System.Xml.Linq   包含LINQ to XML的类,LINQ to XML是内存中的XML变成接口

 

查询表达式使用form1.cs

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;namespace LinqTest{    public partial class Form1 : Form    {        public Form1()        {            InitializeComponent();        }        private void button1_Click(object sender, EventArgs e)        {            int[] numbers = new int[7] { 0, 1, 2, 3, 4, 5, 6 };            //创建查询            //查询结果的类型是IEnumberable
var result0 = from num in numbers where (num % 2) == 0 select num; //执行查询结果 foreach (int num in result0) { listBox1.Items.Add(num); } } private void button2_Click(object sender, EventArgs e) { listBox1.Items.Clear(); int[] numbers = new int[7] { 2, 1, 2, 6, 4, 5, 3 }; var result1 = //声明查询 from num in numbers //声明临时变量num,其值来源于numbers where num>3 //当前值大于3 orderby num descending//按照descending方式排序,降序 select num; //将当前项加入到结果序列中 foreach (int num in result1) { listBox1.Items.Add(num); } } private void button3_Click(object sender, EventArgs e) { listBox1.Items.Clear(); int[] numbers = new int[7] { 2, 1, 2, 6, 4, 5, 3 }; var result2 = //声明查询 from num in numbers //声明临时变量num,其值来源于numbers where num > 3 //当前值大于3 orderby num ascending//按照ascending方式排序,升序 select string.Format("当前项值为{0}",num); //将当前项加入到结果序列中 foreach (string num in result2) { listBox1.Items.Add(num); } } private void button4_Click(object sender, EventArgs e) { listBox1.Items.Clear(); int[] numbers = new int[7] { 2, 1, 2, 6, 4, 5, 3 }; int result3 = //声明查询 (from num in numbers //声明临时变量num,其值来源于numbers where num > 3 //当前值大于3 select num).Count(); //将当前项加入到结果序列中 button4.Text += "--" + result3.ToString(); } }}

Form1.cs

转载于:https://www.cnblogs.com/Mysterious/p/3426847.html

你可能感兴趣的文章
列表的操作
查看>>
8 通用输入输出口
查看>>
矩阵与坐标系
查看>>
Java生鲜电商平台-服务器部署设计与架构
查看>>
Struts结合马士兵视频的学习经验
查看>>
MVC中局部视图的使用
查看>>
怎么接音响
查看>>
NPOI创建Word
查看>>
制单表查询all终于搞定了辅助核算显示
查看>>
Linux进程通信的几种方式总结
查看>>
DNS用的是TCP协议还是UDP协议
查看>>
JDK8集合类源码解析 - HashSet
查看>>
[面试没有回答上的问题4]常用字符串和数组的操作。
查看>>
WPF知识点全攻略09- 附加属性
查看>>
敏捷开发 流程 - 及产出
查看>>
关于SQL Server 2017中使用json传参时解析遇到的多层解析问题
查看>>
[转]SVN客户端解决authorization failed问题
查看>>
/etc/init.d目录和/etc/rc.local脚本
查看>>
Kubernetes StatefulSets
查看>>
用Python对html进行编码
查看>>