博客
关于我
强烈建议你试试无所不能的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上的一个超级查询表达方式.
你可能感兴趣的文章
python svn
查看>>
raise语句
查看>>
sequence2(高精度dp)
查看>>
ABP实战--集成Ladp/AD认证
查看>>
存储过程
查看>>
phpcms v9栏目列表调用每一篇文章内容方法
查看>>
python 自定义信号处理器
查看>>
luov之SMTP报错详解
查看>>
软件概要设计做什么,怎么做
查看>>
dwr
查看>>
java的特殊符号
查看>>
word2010中去掉红色波浪线的方法
查看>>
fabric上下文管理器(context mangers)
查看>>
JQuery-EasyUI Datagrid数据行鼠标悬停/离开事件(onMouseOver/onMouseOut)
查看>>
并发和并行的区别
查看>>
php小知识
查看>>
Windows下安装、运行Lua
查看>>
Nginx 反向代理、负载均衡、页面缓存、URL重写及读写分离详解(二)
查看>>
用php curl请求接口碰到的问题总结
查看>>
初识中间件之消息队列
查看>>