最新文章列表

Oracle 官方支持 linq 的驱动程序下载地址

http://www.oracle.com/technetwork/topics/dotnet/downloads/oracleefbeta-302521.html http://www.oracle.com/technetwork/database/windows/downloads/index-101290.html 貌似集成开发工具方面只支持vs.net 2010
61party 评论(0) 有568人浏览 2011-04-26 17:30

LINQ To DataSet:联合查询

Student[] students = { new Student { Id = 1, Name = "Joe Rattz" }, new Student { Id = 7, Name = "Anthony Adams" }, new Student { Id = 13, Name = "Stacy Sinclair&qu ...
61party 评论(0) 有860人浏览 2011-04-26 15:22

LINQ To XML:之复杂的查询举例

XDocument xDocument = new XDocument( new XElement("BookParticipants", new XElement("BookParticipant", new XAttribute("type", "Author"), ...
61party 评论(0) 有856人浏览 2011-04-25 17:37

LINQ To XML:按文档定义的元素顺序显示元素InDocumentOrder

这个发生挺有意思的,有时候我们打乱文档元素原有的顺序,比方说对元素顺序进行倒转Reverse 但是有时候又需要取回原有的顺序,这个时候就可以使用InDocumentOrder,下面是例子 XDocument xDocument = new XDocument( new XElement("BookParticipants", new XElement( ...
61party 评论(0) 有575人浏览 2011-04-25 17:11

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 ...
61party 评论(0) 有1242人浏览 2011-04-25 16:26

LINQ To XML:遍历元素属性

便利元素属性有几个方法XElement.FirstAttribute,XAttribute.NextAttribute,XAttribute.PreviousAttribute,XElement.LastAttribute 举两个例子就OK了,其实的用法是一样的,从字眼上也能看出它们的功能 首先是 XElement.FirstAttribute // we will use t ...
61party 评论(0) 有866人浏览 2011-04-25 16:09

LINQ To XML:设置子元素的值、添加子元素或移除子元素(XElement.SetElementValue)

XElement.SetElementValue这个方法相当的体贴,它会自动判断元素是否有该子元素,如果有就是更新,没有就是增加,那么删除呢,也简单得让人开心的笑,XElement.SetElementValue("LastName", null),这句是删除LastName这个元素 // we will use this to store a reference to ...
61party 评论(0) 有976人浏览 2011-04-25 15:28

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 ...
61party 评论(0) 有427人浏览 2011-04-25 15:10

LINQ To XML:修改结点内容

XDocument xDocument = new XDocument( new XElement("BookParticipants", firstParticipant = new XElement("BookParticipant", new XComment("This is a new author.& ...
61party 评论(0) 有611人浏览 2011-04-25 15:06

LINQ To Xml:按条件删除element

XDocument xDocument = new XDocument( new XElement("BookParticipants", new XElement("BookParticipant", new XAttribute("type", "Author"), ...
61party 评论(0) 有584人浏览 2011-04-25 15:00

LINQ To Xml:使用XPath

http://msdn.microsoft.com/zh-cn/library/bb675178.aspx 非常不错的教程,和示例
61party 评论(0) 有594人浏览 2011-04-23 18:06

LINQ To XML:修改element, a comment, text node

// we will use this to reference to one of the elements in the XML tree. XElement firstParticipant; XDocument xDocument = new XDocument( new XElement("BookParticipants", firstPart ...
61party 评论(0) 有624人浏览 2011-04-22 15:24

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"), ...
61party 评论(0) 有766人浏览 2011-04-21 17:51

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"), ...
61party 评论(0) 有593人浏览 2011-04-21 17:13

导出resource文件的的资源

写个小工具,方便一次性将resource文件中的资源导出,不然反编译后一个个找,真是太麻烦了。 usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSystem.Resources;usingSystem.Collections;usingSystem.IO;namespaceResE ...
javababy1 评论(0) 有739人浏览 2010-07-19 10:23

WCF+EF 实战四:UI层MVP模式处理

在本系列的第一篇中,我们曾经描述了本系统的整个实现结构,可以查看第一篇。 在客户端的实现我们将采用MVP模式来实现,就是将客户端再分为二层,UI及presenter, UI主要是定义界面的元素及响应客户的操作。Presenter主要是对UI层响应客户端操作的业务处理。关于MVP的一些知识,如果不太清楚可以查看http://blog.csdn.net/greystar/archive/2008/1 ...
javababy1 评论(0) 有800人浏览 2008-12-03 10:11

WCF+EF 实战系列三 WCF服务的实现与托管

<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /> 前一篇文章讲述了使用EF来构选我们的模型实体,及业务层的实现。见http://blog.csdn.net/greystar/archive/2008/11/26/3377943.aspx 本文主要讲述的是WCF的 ...
javababy1 评论(0) 有1026人浏览 2008-11-27 16:09

WCF+Ef实战系列二:EF实体的构建及数据业务层的处理

本文主要讲述业务层和数据处理层的实现。由于我们使用了EF,则本身就实现了数据层的操作。因此我们首先要做的事就是构建EF模型。 第一步我们来创建相关的数据库NewWide,里面有一张表Employees,如下图 列名 数据类型
javababy1 评论(0) 有800人浏览 2008-11-26 11:16

WCF+EF实战系列一

记得有很久没有研究过新的技术了,反正上次买了本WCF服务编程的书,我记得只看了几页后就再也没有动过。可能是年纪大了,没精力再去研究一些新的技术了。再说在解决分布式的问题时,还有一套REMOTING的方案可以使用。因此也一直没有升级VS2008。对WCF的相关知识也只是在网上难得看一下。 前一阵在网上看到Linq To SQL将来不再支持的消息后,同时EntityFramework也发布了一阵了 ...
javababy1 评论(0) 有1062人浏览 2008-11-25 10:10

在被调用方法中如何获取调用方的相关信息

刚才在BBS中看到有人提这样一个问题.其实很早以前自己也有这样的想法.不过当时只是看了一下反射的类库,发觉实现不了,就作罢了.现在想想这个问题其实也简单,就是利用调用堆栈来获取这些信息.利用调用堆栈可以获取很多有用的信息. 由于代码比较简单,所以也不多说了: using System;using System.Collections.Generic;using System.ComponentM ...
javababy1 评论(0) 有730人浏览 2008-09-19 10:33

最近博客热门TAG

Java(141746) C(73651) C++(68608) SQL(64571) C#(59609) XML(59133) .net(54785) 编程(39454) JSP(37542) 数据结构(36423) Eclipse(31254) PHP(29989) F#(26079) 算法(24867) 脚本(19840) J#(18922) JDBC(17888) ASP(17480) JDK(14881) JVM(14450)

博客人气排行榜

    博客电子书下载排行

      >>浏览更多下载

      相关资讯

      相关讨论

      Global site tag (gtag.js) - Google Analytics