博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
很酷的let clause的应用
阅读量:6038 次
发布时间: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上的一个超级查询表达方式.
你可能感兴趣的文章
Google 翻译的妙用
查看>>
常用的集合
查看>>
Unity3D工程源码目录
查看>>
杀死进程命令
查看>>
cookie 和session 的区别详解
查看>>
Mongodb对集合(表)和数据的CRUD操作
查看>>
Target runtime Apache Tomcat is not defined.错误解决方法
查看>>
VC++ 监视文件(夹)
查看>>
【转】keyCode对照表及JS监听组合按键
查看>>
[Java开发之路](14)反射机制
查看>>
mac gentoo-prefix安装git svn
查看>>
浅尝异步IO
查看>>
C - Train Problem II——(HDU 1023 Catalan 数)
查看>>
Speak loudly
查看>>
iOS-在项目中引入RSA算法
查看>>
[译] 听说你想学 React.js ?
查看>>
gulp压缩合并js与css
查看>>
块级、内联、内联块级
查看>>
Predicate
查看>>
[面试题记录01]实现一个function sum达到一下目的
查看>>