摘要: Last week Vaughn Vernon, author of Implementing Domain Driven Design, published Dotsero, a .NET Actor model toolkit written in C that closely follows ... 阅读全文
posted @ 2015-11-27 17:30 东风125 阅读(330) 评论(0) 推荐(0) 编辑
摘要: WCF 数据服务(以前称为“ADO.NET Data Services”)是 .NET Framework 的一个组件。可以使用此组件创建一些服务,利用开放式数据协议 (OData) 来借助具象状态传输 (REST)(可能为英文网页)语义通过 Web 或 Intranet 公开和使用数据。OData 将数据公开为可通过 URI 寻址的资源。 可使用 GET、PUT、POST 和 DELETE 这些标准 HTTP 谓词来访问和更改数据。OData 使用实体数据模型的实体关系约定,将资源公开为通过关联相关的实体集。 阅读全文
posted @ 2015-09-22 08:49 东风125 阅读(232) 评论(0) 推荐(0) 编辑
摘要: .NET Framework 4.5 其他版本 .NET Framework 提供了一组全面而集成的类,可用来方便地生成可以识别 XML 的应用程序。 通过以下命名空间中的类,可以分析和编写 XML,编辑内存中的 XML 数据,进行数据验证以及 XSLT 转换。 System.Xml System.Xml.XPath System.Xml.Xsl System.Xml.Sche... 阅读全文
posted @ 2015-09-22 08:47 东风125 阅读(230) 评论(0) 推荐(0) 编辑
摘要: http://csharptest.net/1250/why guid primary keys are a databases worst nightmare/ When you ask most people why using a GUID column for a primary key ... 阅读全文
posted @ 2015-09-17 10:12 东风125 阅读(226) 评论(0) 推荐(0) 编辑
摘要: This blog post was written for the Lockheed Martin Insight blog, sharing here for the external audience.Last month I started the Pluralsight summer ca... 阅读全文
posted @ 2015-09-10 23:11 东风125 阅读(642) 评论(0) 推荐(0) 编辑
摘要: This blog post describes how to re-template the Silverlight ProgressBar control to render a circular progress indicator. This approach uses an attache... 阅读全文
posted @ 2015-09-02 12:59 东风125 阅读(229) 评论(0) 推荐(0) 编辑
摘要: #First MarkDown Blog ##Title1 ##Tiltle2 阅读全文
posted @ 2015-09-02 12:39 东风125 阅读(196) 评论(0) 推荐(0) 编辑
摘要: byRichard Carr, published athttp://www.blackwasp.co.uk/FolderRecursion.aspxSome applications must read the folder structure beneath an existing folder... 阅读全文
posted @ 2015-08-31 09:13 东风125 阅读(342) 评论(0) 推荐(0) 编辑
摘要: Milan IkitsUniversity of UtahJoe KnissUniversity of UtahAaron LefohnUniversity of California, DavisCharles HansenUniversity of UtahThis chapter presen... 阅读全文
posted @ 2015-08-29 22:16 东风125 阅读(532) 评论(0) 推荐(0) 编辑
摘要: Learning about RESTAn Abstract ExampleWhy Should You Care about REST?WCF and RESTWebGetAttribute and WebInvokeAttributeUriTemplate and UriTemplateTabl... 阅读全文
posted @ 2015-08-26 17:46 东风125 阅读(279) 评论(0) 推荐(0) 编辑
摘要: indows Presentation Framework (WPF) gets a lot of mileage out of being layered on top of DirectX, including fast rendering, multimedia support, audio,... 阅读全文
posted @ 2015-08-07 10:24 东风125 阅读(603) 评论(0) 推荐(0) 编辑
摘要: http://yichuanshen.de/blog/2010/11/13/flipping-elements-with-wpf/Have you already seen ForgottenTime’s new flip animation eye candy? If not, it’s abou... 阅读全文
posted @ 2015-08-05 11:08 东风125 阅读(379) 评论(0) 推荐(0) 编辑
摘要: 酷壳 http://coolshell.cn 老赵点滴- 追求编程之美 http://blog.zhaojie.me/ Pixel-In-Gene Blog 阅读全文
posted @ 2015-07-28 10:35 东风125 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 时常,来自不同连接的线程会对同一张表进行读/更新操作,这种并发操作会导致阻塞,同时SQL Server会自动处理以防止脏读。然而,有种情景很常见,那就是每个连接要读/更新的行互相排斥,换句话说,就是各个连接读/更新的行没有交集。在这片文章中,将像大家展示如何恰当地使用索引来降低阻塞的发生,以便多个读/更新能够同时操作同一张表。 创建TEST表如下: SET ANSI_NULLS ON GO... 阅读全文
posted @ 2015-07-25 11:23 东风125 阅读(206) 评论(0) 推荐(0) 编辑
摘要: 一、并发问题的产生 多线程/进程同时操作(读/写)同一数据 二、并发问题的种类 丢失更新(lost update) 第一类更新丢失(回滚丢失): 当2个事务更新相同的数据源,如果第一个事务被提交,而另外一个事务却被撤销,那么会连同第一个事务所做的跟新也被撤销。也就是说第一个事务做的跟新丢失了。 第二类更新丢失(覆盖丢失): 第二类更新丢失实在实际应用中经常遇到的并发问题,他和... 阅读全文
posted @ 2015-07-25 11:11 东风125 阅读(254) 评论(0) 推荐(0) 编辑
摘要: Web service standards: SOAP, REST, OData, and moreSo far, we've covered the components of aweb service, the messaging format and transport protocols.B... 阅读全文
posted @ 2015-07-23 17:52 东风125 阅读(382) 评论(0) 推荐(0) 编辑
摘要: In my opinion, if you are using WPF or Silverlight you should be using the MVVM design pattern. It is perfectly suited to the technology and allows yo... 阅读全文
posted @ 2015-07-20 09:18 东风125 阅读(322) 评论(0) 推荐(0) 编辑
摘要: Fromhttp://geekswithblogs.net/akraus1/archive/2012/07/25/150301.aspxI have written already some time ago how big a .NET object is. John Skeet as also ... 阅读全文
posted @ 2015-07-11 15:54 东风125 阅读(244) 评论(0) 推荐(0) 编辑
摘要: pingback :http://java.sys-con.com/node/84633?page=0,1Object-oriented design is like an alloy consisting of a solid grounding in the object-oriented (O... 阅读全文
posted @ 2015-07-08 16:41 东风125 阅读(416) 评论(0) 推荐(0) 编辑
摘要: 引言在对Bitmap图片操作的时候,有时需要用到获取或设置像素颜色方法:GetPixel 和 SetPixel,如果直接对这两个方法进行操作的话速度很慢,这里我们可以通过把数据提取出来操作,然后操作完在复制回去可以加快访问速度两种方法其实对Bitmap的访问还有两种方式,一种是内存法,一种是指针法1... 阅读全文
posted @ 2015-06-28 08:07 东风125 阅读(469) 评论(0) 推荐(0) 编辑