<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_涤生之Enjoy code</title><subtitle type="text">General principles of programmer</subtitle><id>http://feed.cnblogs.com/blog/u/9117/rss</id><updated>2008-11-07T10:23:41Z</updated><author><name>涤生</name><uri>http://www.cnblogs.com/mintqzy/</uri></author><generator>CNBlogs BlogServer</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/mintqzy/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/9117/rss"/><entry><id>http://www.cnblogs.com/mintqzy/archive/2008/11/07/1329085.html</id><title type="text">Enterprise Library Caching Application Block(CAB)源代码研究之缓存条目清理后台线程篇 </title><summary type="text">Caching Application Block(CAB)之缓存条目清理后台线程篇Tag：BackgroundScheduler，ExpirationPollTimer 在Caching Application Block(文中将简称为CAB)中关于如何处理缓存条目的文章有不少，但对于如何实现的说的不多。也许很多大牛们不屑吧。 从设计思想上来说移除条目大的方向有两个，一个是主动的调用Move方法；另外一个是通过后台进程的方法。对于主动调用，就不赘述了。下面引出本文所要描述的重点，即后台进程移除缓存条目。</summary><published>2008-11-07T10:24:00Z</published><updated>2008-11-07T10:24:00Z</updated><author><name>涤生</name><uri>http://www.cnblogs.com/mintqzy/</uri></author><link rel="alternate" href="http://www.cnblogs.com/mintqzy/archive/2008/11/07/1329085.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/mintqzy/archive/2008/11/07/1329085.html"/></entry><entry><id>http://www.cnblogs.com/mintqzy/archive/2008/02/15/1069284.html</id><title type="text">了解ASP.NET底层架构（网络上的翻译）</title><summary type="text">这篇文章以非常底层的视角讲述了Web请求（request）在ASP.NET框架中是如何流转的,从Web服务器,通过ISAPI直到请求处理器(handler)和你的代码.看看在幕后都发生了些什么,不要再把ASP.NET看成一个黑盒了.</summary><published>2008-02-15T01:15:00Z</published><updated>2008-02-15T01:15:00Z</updated><author><name>涤生</name><uri>http://www.cnblogs.com/mintqzy/</uri></author><link rel="alternate" href="http://www.cnblogs.com/mintqzy/archive/2008/02/15/1069284.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/mintqzy/archive/2008/02/15/1069284.html"/></entry><entry><id>http://www.cnblogs.com/mintqzy/archive/2007/08/11/851898.html</id><title type="text">EditPlus中的正则表达式使用－－如何使用查找到的原字符</title><summary type="text">EditPlus中的正则表达式使用－－如何使用查找到的原字符</summary><published>2007-08-11T08:15:00Z</published><updated>2007-08-11T08:15:00Z</updated><author><name>涤生</name><uri>http://www.cnblogs.com/mintqzy/</uri></author><link rel="alternate" href="http://www.cnblogs.com/mintqzy/archive/2007/08/11/851898.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/mintqzy/archive/2007/08/11/851898.html"/></entry><entry><id>http://www.cnblogs.com/mintqzy/archive/2007/07/23/828149.html</id><title type="text">Spring.Net学习笔记一——入门、第一个例子</title><summary type="text">从今天开始学习Spring.Net，此系列文章均按照一个新手（如我）在实践过程中遇到的困惑以及困惑的解决过程来写的。作为自己学习Spring.Net的一个学习笔记。&#xD;第一章，入门；如何建立自己的第一功Spring.Net的实例</summary><published>2007-07-23T04:57:00Z</published><updated>2007-07-23T04:57:00Z</updated><author><name>涤生</name><uri>http://www.cnblogs.com/mintqzy/</uri></author><link rel="alternate" href="http://www.cnblogs.com/mintqzy/archive/2007/07/23/828149.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/mintqzy/archive/2007/07/23/828149.html"/></entry><entry><id>http://www.cnblogs.com/mintqzy/archive/2007/07/20/825792.html</id><title type="text">CodeSmith4.0.2连接SqlServer2005――不允许远程连接</title><summary type="text">你可能连接的数据库是SQL Server 2005 Express Edition,从"开始菜单"调出"配置工具"中的"SQL Server 外围应用配置器".然后单击"服务和连接外围应用配置器",选择数据库实例(默认是"SQLEXPRESS",选择database Engine的"远程连接"中的"本地连接和远程连接(用TCP/IP)",这样即可打开SQL Server 2005的远程连接(默认不允许).</summary><published>2007-07-20T09:17:00Z</published><updated>2007-07-20T09:17:00Z</updated><author><name>涤生</name><uri>http://www.cnblogs.com/mintqzy/</uri></author><link rel="alternate" href="http://www.cnblogs.com/mintqzy/archive/2007/07/20/825792.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/mintqzy/archive/2007/07/20/825792.html"/></entry><entry><id>http://www.cnblogs.com/mintqzy/archive/2007/07/19/824234.html</id><title type="text">many2many的写法与注意点</title><summary type="text">所谓many2many就是多对多关系，如人员与权限；人员与部门等。&#xD;&#xD;多对多可以将关联表作为一个实体，相关系的表均采用One2Many方法引用这个关联实体。另外一种就是采用真正的Many2Many方式，如下：&#xD;&#xD;在这种情况下，多对多操纵的是三张表，但只有两个实体类。中间的关系表在Nhibernate中是不当作实体来处理的。&#xD;&#xD;</summary><published>2007-07-19T08:56:00Z</published><updated>2007-07-19T08:56:00Z</updated><author><name>涤生</name><uri>http://www.cnblogs.com/mintqzy/</uri></author><link rel="alternate" href="http://www.cnblogs.com/mintqzy/archive/2007/07/19/824234.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/mintqzy/archive/2007/07/19/824234.html"/></entry><entry><id>http://www.cnblogs.com/mintqzy/archive/2007/07/19/824219.html</id><title type="text">Nhibernate继承类的写法</title><summary type="text">NHiberNate中继承类－将所有类放在一张表中的写法</summary><published>2007-07-19T08:48:00Z</published><updated>2007-07-19T08:48:00Z</updated><author><name>涤生</name><uri>http://www.cnblogs.com/mintqzy/</uri></author><link rel="alternate" href="http://www.cnblogs.com/mintqzy/archive/2007/07/19/824219.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/mintqzy/archive/2007/07/19/824219.html"/></entry><entry><id>http://www.cnblogs.com/mintqzy/archive/2007/07/19/824209.html</id><title type="text">One2One主键关联的实现</title><summary type="text">One2One主键关联的实现</summary><published>2007-07-19T08:45:00Z</published><updated>2007-07-19T08:45:00Z</updated><author><name>涤生</name><uri>http://www.cnblogs.com/mintqzy/</uri></author><link rel="alternate" href="http://www.cnblogs.com/mintqzy/archive/2007/07/19/824209.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/mintqzy/archive/2007/07/19/824209.html"/></entry><entry><id>http://www.cnblogs.com/mintqzy/archive/2007/07/18/822661.html</id><title type="text">NHibernate基础学习时遇到的问题</title><summary type="text">Nhibernate的实现一、单表的实现1） 配置，可以放入在WebConfig中或放入单独文件中生成ISessionFactroy，一般采用单例模式实现。NHibernate.Cfg.Configurationcfg=newNHibernate.Cfg.Configuration();cfg.AddAssembly(Assembly.GetExecutingAssembly());factory...</summary><published>2007-07-18T07:47:00Z</published><updated>2007-07-18T07:47:00Z</updated><author><name>涤生</name><uri>http://www.cnblogs.com/mintqzy/</uri></author><link rel="alternate" href="http://www.cnblogs.com/mintqzy/archive/2007/07/18/822661.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/mintqzy/archive/2007/07/18/822661.html"/></entry><entry><id>http://www.cnblogs.com/mintqzy/archive/2007/07/18/822657.html</id><title type="text">NHibernate学习之一：Many2One遇到的问题</title><summary type="text">博客园有不少优秀的NHibernate起步的教程，但很多的都是官方StartKit的教程，关于如何来解决初学者所遇到的问题上，以及对NHibernate使用中一些关键点如何理解上所述甚少。本文是我自己在学习NHiberNate中所遇到的一些关键点以及一些问题的记录。希望对我或与我有相同困惑的人有所帮助。</summary><published>2007-07-18T07:43:00Z</published><updated>2007-07-18T07:43:00Z</updated><author><name>涤生</name><uri>http://www.cnblogs.com/mintqzy/</uri></author><link rel="alternate" href="http://www.cnblogs.com/mintqzy/archive/2007/07/18/822657.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/mintqzy/archive/2007/07/18/822657.html"/></entry></feed>
