在向大家详细介绍LINQ to SQL语句之前,首先让大家了解下Select操作形式,分别为指定嵌套类型形式、LocalMethodCall形式、Distinct形式。
这篇开始我们继续说LINQ to SQL语句,目的让大家从语句的角度了解LINQ,LINQ包括LINQ to Objects、LINQ to DataSets、LINQ to SQL、LINQ to Entities、LINQ to XML,但是相对来说LINQ to SQL在我们程序中使用最多,毕竟所有的数据都要在数据库运行着各种操作。所以先来学习LINQ to SQL语句,其它的都差不多了,那么就从Select说起吧,这个在编写程序中也最为常用。本篇详细说明一下Select操作形式,分别为指定嵌套类型形式、LocalMethodCall形式、Distinct形式。
1.嵌套类型形式:
说明:返回的对象集中的每个对象DiscountedProducts属性中,又包含一个集合。也就是每个对象也是一个集合类。
- var q =
- from o in db.Orders
- select new {
- o.OrderID,
- DiscountedProducts =
- from od in o.OrderDetails
- where od.Discount > 0.0
- select od,
- FreeShippingDiscount = o.Freight
- };
2.LocalMethodCall形式:
这个例子InternationalPhone调用本地方法PhoneNumberConverter
- var q = from c in db.Customers
- where c.Country == "UK" || c.Country == "USA"
- select new
- {
- c.CustomerID,
- c.CompanyName,
- Phone = c.Phone,
- InternationalPhone =
- PhoneNumberConverter(c.Country, c.Phone)
- };
PhoneNumberConverter方法如下:
- public string PhoneNumberConverter(string Country, string Phone)
- {
- PhonePhone = Phone.Replace(" ", "").Replace(")", ")-");
- switch (Country)
- {
- case "USA":
- return "1-" + Phone;
- case "UK":
- return "44-" + Phone;
- default:
- return Phone;
- }
- }
下面也是使用了这个方法
- XDocument doc = new XDocument(
- new XElement("Customers", from c in db.Customers
- where c.Country == "UK" || c.Country == "USA"
- select (new XElement("Customer",
- new XAttribute("CustomerID", c.CustomerID),
- new XAttribute("CompanyName", c.CompanyName),
- new XAttribute("InterationalPhone",
- PhoneNumberConverter(c.Country, c.Phone))
- }
- }
- }
- };
3.Distinct形式:
说明:筛选字段中不相同的值。用于查询不重复的结果集。生成SQL语句为:SELECT DISTINCT [City] FROM [Customers]
- var q = (
- from c in db.Customers
- select c.City )
- .Distinct();
语句描述:查询顾客覆盖的国家。
【编辑推荐】
新闻标题:LINQ to SQL语句浅析
标题网址:http://www.mswzjz.cn/qtweb/news34/374634.html
攀枝花网站建设、攀枝花网站运维推广公司-贝锐智能,是专注品牌与效果的网络营销公司;服务项目有等
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 贝锐智能