博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
很酷的let clause的应用
阅读量:6040 次
发布时间:2019-06-20

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

这里是LINQ to XML利用let暂时存放子节点的数据,再从查询let中的数据得到XML中子节点多个属性.
<
cars
>
  
<
car 
name
="Toyota Coupe"
>
    
<
profile 
name
="Vendor"
 value
="Toyota"
/>
    
<
profile 
name
="Model"
 value
="Celica"
/>
    
<
profile 
name
="Doors"
 value
="2"
/>
    
<
support 
name
="Racing"
 value
="yes"
/>
    
<
support 
name
="Towing"
 value
="no"
/>
  
</
car
>
  
<
car 
name
="Honda Accord Aerodec"
>
    
<
profile 
name
="Vendor"
 value
="Honda"
/>
    
<
profile 
name
="Model"
 value
="Accord"
/>
    
<
profile 
name
="Doors"
 value
="4"
/>
    
<
support 
name
="Racing"
 value
="no"
/>
    
<
support 
name
="Towing"
 value
="yes"
/>
  
</
car
>
</
cars
>
from car 
in
 root.Elements(
"
car
"
)
let profiles 
=
  from profile 
in
 car.Elements(
"
profile
"
)
  select 
new
 
{
    Name 
= profile.Attribute("name").Value,
    Value 
= profile.Attribute("value").Value
  }
let supports 
=
  from support 
in
 car.Elements(
"
support
"
)
  select 
new
 
{
    Name 
= support.Attribute("name").Value,
    Value 
= support.Attribute("value").Value
  }
select 
new
 Car 
{
  Name 
= car.Attribute("name").Value,
  Vendor 
= profiles.Single(prof => prof.Name == "Vendor").Value,
  Model 
= profiles.Single(prof => prof.Name == "Model").Value,
  Doors 
= int.Parse(profiles.Single(prof => prof.Name == "Doors").Value),
  RacingSupport 
= supports.Single(sup => sup.Name == "Racing").Value == "yes"
}
;
其实更精彩的是在一个老外的blog上的一个超级查询表达方式.
你可能感兴趣的文章
设计模式(十一):FACADE外观模式 -- 结构型模式
查看>>
iOS xcodebuile 自动编译打包ipa
查看>>
程序员眼中的 SQL Server-执行计划教会我如何创建索引?
查看>>
【BZOJ】1624: [Usaco2008 Open] Clear And Present Danger 寻宝之路(floyd)
查看>>
cmake总结
查看>>
数据加密插件
查看>>
linux后台运行程序
查看>>
win7 vs2012/2013 编译boost 1.55
查看>>
IIS7如何显示详细错误信息
查看>>
ViewPager切换动画PageTransformer使用
查看>>
coco2d-x 基于视口的地图设计
查看>>
C++文件读写详解(ofstream,ifstream,fstream)
查看>>
Android打包常见错误之Export aborted because fatal lint errors were found
查看>>
Tar打包、压缩与解压缩到指定目录的方法
查看>>
新手如何学习 jQuery?
查看>>
配置spring上下文
查看>>
Python异步IO --- 轻松管理10k+并发连接
查看>>
mysql-python模块编译问题解决
查看>>
Oracle中drop user和drop user cascade的区别
查看>>
【Linux】linux经常使用基本命令
查看>>