随笔分类 -  Linq

摘要:一、 LINQ To XML常用类Linq To XML类的层次结构图:2.抽象类基类:XObject3.抽象基类:XNode 4.抽象基类:XContainer5.XElement:7.XAttribute二.Loading XML XML能够被加载从文件系统中、URL和XMLReader中,通常的处理方式是采用XElement类的静态方法Load进行处理。例如:XElement element = XElement.Load("book.xml"); 在某些特殊情况下,XML文件中可能包含有某些空白字符【WihteSpace】,在加载过程中,根据不同的需求,可能过滤掉W 阅读全文
posted @ 2012-05-18 23:47 pstune 阅读(859) 评论(0) 推荐(0)
摘要:一、 LINQ to XML axis methodThe chapter xml file depend on the follow file:Elment The Element axis method allows us to select a single XML element by name.If no element found with the name provided to the element axis method,Null value will be returnedXElement root = XElement.Load("categorizedBoo 阅读全文
posted @ 2012-05-18 23:12 pstune 阅读(256) 评论(0) 推荐(0)
摘要:主要的查询操作方法FamilyQuery operatorsFilteringOfType、WhereProjectionSelect、SelectManyPartitioningSkip、SkipWhile、Take、TakeWhileJoinGroupJoin、JoinConcatenationConcatOrderingOrderBy、OrderByDescending、Reverse、ThenBy、ThenByDescendingGroupingGroupBy、ToLookupSetDistinct、Except、Intersect、UnionConversionAsEnumerab. 阅读全文
posted @ 2012-03-02 14:49 pstune 阅读(1452) 评论(1) 推荐(0)