本月博客排行
年度博客排行
-
第1名
宏天软件 -
第2名
龙儿筝 -
第3名
青否云后端云 - wallimn
- gashero
- vipbooks
- wy_19921005
- benladeng5225
- fantaxy025025
- zysnba
- ssydxa219
- e_e
- javashop
- sam123456gz
- arpenker
- tanling8334
- kaizi1992
- xpenxpen
- xiangjie88
- wiseboyloves
- ganxueyun
- lemonhandsome
- xyuma
- sichunli_030
- wangchen.ily
- jh108020
- zxq_2017
- jbosscn
- Xeden
- zhanjia
- forestqqqq
- luxurioust
- lzyfn123
- johnsmith9th
- ajinn
- nychen2000
- wjianwei666
- daizj
- hanbaohong
- 喧嚣求静
- ranbuijj
- silverend
- kingwell.leng
- lchb139128
- kristy_yy
- lich0079
- jveqi
- java-007
- sunj
- yeluowuhen
最新文章列表
LINQ To XML:按文档定义的元素顺序显示元素InDocumentOrder
这个发生挺有意思的,有时候我们打乱文档元素原有的顺序,比方说对元素顺序进行倒转Reverse
但是有时候又需要取回原有的顺序,这个时候就可以使用InDocumentOrder,下面是例子
XDocument xDocument = new XDocument(
new XElement("BookParticipants",
new XElement( ...
LINQ To XML:获取,修改,增加,删除元素的属性
获取元素属性有两个方法,XElement.Attribute() 和XElement.Attributes()
简单举个例就知道了
// we will use this to store a reference to one of the elements in the XML tree.
XElement firstParticipant;
XDocument xDocu ...
LINQ To XML:遍历元素属性
便利元素属性有几个方法XElement.FirstAttribute,XAttribute.NextAttribute,XAttribute.PreviousAttribute,XElement.LastAttribute
举两个例子就OK了,其实的用法是一样的,从字眼上也能看出它们的功能
首先是
XElement.FirstAttribute
// we will use t ...
LINQ To XML:设置子元素的值、添加子元素或移除子元素(XElement.SetElementValue)
XElement.SetElementValue这个方法相当的体贴,它会自动判断元素是否有该子元素,如果有就是更新,没有就是增加,那么删除呢,也简单得让人开心的笑,XElement.SetElementValue("LastName", null),这句是删除LastName这个元素
// we will use this to store a reference to ...
LINQ To XML:重写一个结点的内容Replace
// we will use this to store a reference to one of the elements in the XML tree.
XElement firstParticipant;
XDocument xDocument = new XDocument(
new XElement("BookParticipants", f ...
LINQ To Xml:按条件删除element
XDocument xDocument = new XDocument(
new XElement("BookParticipants",
new XElement("BookParticipant",
new XAttribute("type", "Author"),
...
Linq To XML:获得自身结点,及相邻的上/下一个结点
XElement firstParticipant;
// A full document with all the bells and whistles.
XDocument xDocument = new XDocument(
new XDeclaration("1.0", "UTF-8", "yes"),
...
Linq To XML:获得该结点的所有祖先结点,也可以说父结点吧
XElement firstParticipant;
// A full document with all the bells and whistles.
XDocument xDocument = new XDocument(
new XDeclaration("1.0", "UTF-8", "yes"),
...
WCF+Ef实战系列二:EF实体的构建及数据业务层的处理
本文主要讲述业务层和数据处理层的实现。由于我们使用了EF,则本身就实现了数据层的操作。因此我们首先要做的事就是构建EF模型。
第一步我们来创建相关的数据库NewWide,里面有一张表Employees,如下图
列名
数据类型
WCF+EF实战系列一
记得有很久没有研究过新的技术了,反正上次买了本WCF服务编程的书,我记得只看了几页后就再也没有动过。可能是年纪大了,没精力再去研究一些新的技术了。再说在解决分布式的问题时,还有一套REMOTING的方案可以使用。因此也一直没有升级VS2008。对WCF的相关知识也只是在网上难得看一下。
前一阵在网上看到Linq To SQL将来不再支持的消息后,同时EntityFramework也发布了一阵了 ...