博客
关于我
强烈建议你试试无所不能的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上的一个超级查询表达方式.
你可能感兴趣的文章
【转】jmeter 进行java request测试
查看>>
读书笔记--MapReduce 适用场景 及 常见应用
查看>>
SignalR在Xamarin Android中的使用
查看>>
Eclipse和MyEclipse使用技巧--Eclipse中使用Git-让版本管理更简单
查看>>
[转]响应式表格jQuery插件 – Responsive tables
查看>>
8个3D视觉效果的HTML5动画欣赏
查看>>
C#如何在DataGridViewCell中自定义脚本编辑器
查看>>
【linux】crontab定时命令
查看>>
Android UI优化——include、merge 、ViewStub
查看>>
Office WORD如何取消开始工作右侧栏
查看>>
Android Jni调用浅述
查看>>
CodeCombat森林关卡Python代码
查看>>
第一个应用程序HelloWorld
查看>>
(二)Spring Boot 起步入门(翻译自Spring Boot官方教程文档)1.5.9.RELEASE
查看>>
Android Annotation扫盲笔记
查看>>
React 整洁代码最佳实践
查看>>
聊聊架构设计做些什么来谈如何成为架构师
查看>>
Java并发编程73道面试题及答案
查看>>
移动端架构的几点思考
查看>>
Spark综合使用及用户行为案例区域内热门商品统计分析实战-Spark商业应用实战...
查看>>