<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://devlicio.us/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Alan Northam - All Comments</title><link>http://devlicio.us/blogs/alan_northam/default.aspx</link><description /><dc:language>en</dc:language><generator>CommunityServer 2008.5 SP1 (Build: 31106.3070)</generator><item><title>re: Getting Started with NHibernate: Part IV</title><link>http://devlicio.us/blogs/alan_northam/archive/2007/07/26/getting-started-with-nhibernate-part-iv.aspx#49318</link><pubDate>Fri, 10 Jul 2009 01:40:00 GMT</pubDate><guid isPermaLink="false">40756a8b-6212-4073-9d98-6c26781577de:49318</guid><dc:creator>tim</dc:creator><description>&lt;p&gt;I have a Entity Object &amp;nbsp;which has a IList&amp;lt;T&amp;gt; Property,but when it is &amp;nbsp;passed to client Proxy object,&lt;/p&gt;
&lt;p&gt;it become a T[],How to resolve it.&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://devlicio.us/aggbug.aspx?PostID=49318" width="1" height="1"&gt;</description></item><item><title>re: ADO.NET, Nullable Types, Casting DBNull and You</title><link>http://devlicio.us/blogs/alan_northam/archive/2008/03/06/ado-net-nullable-types-casting-dbnull-and-you.aspx#47686</link><pubDate>Fri, 05 Jun 2009 08:10:54 GMT</pubDate><guid isPermaLink="false">40756a8b-6212-4073-9d98-6c26781577de:47686</guid><dc:creator>Anton</dc:creator><description>&lt;p&gt;As Chris Forsyth said earlier.&lt;/p&gt;
&lt;p&gt;Such construction as&lt;/p&gt;
&lt;p&gt;instance.Property1 = row[&amp;quot;Column1&amp;quot;] as DateTime?;&lt;/p&gt;
&lt;p&gt;works correctly only in the case when internal ADO column representation type is the same as the casting type. No guarantee that this internal type corresponds to type that you want and will not changed in future .Net versions.&lt;/p&gt;
&lt;p&gt;Another point that some databses have not corresponding types for .Net types.&lt;/p&gt;
&lt;p&gt;For exmaple:&lt;/p&gt;
&lt;p&gt;bool? myBool = row[&amp;quot;Column1&amp;quot;] as bool?;&lt;/p&gt;
&lt;p&gt;works correctly for MS SQL server (if DBType for Column1 is bit) and fails for Oracle server (for any type).&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://devlicio.us/aggbug.aspx?PostID=47686" width="1" height="1"&gt;</description></item><item><title>re: Getting Started with NHibernate: Part III</title><link>http://devlicio.us/blogs/alan_northam/archive/2007/05/23/getting-started-with-nhibernate-part-iii.aspx#46159</link><pubDate>Thu, 23 Apr 2009 11:35:13 GMT</pubDate><guid isPermaLink="false">40756a8b-6212-4073-9d98-6c26781577de:46159</guid><dc:creator>Yazid</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;I would like to take to this opportunity to ask a question about one-to-many. I ahve two classes:&lt;/p&gt;
&lt;p&gt;GeneralInformation and famousPlacesInLondon&lt;/p&gt;
&lt;p&gt;public class GeneralInformation&lt;/p&gt;
&lt;p&gt;{&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;private int id;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;public virtual int Id&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;get { return id; }&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;set { id = value; }&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;private IList&amp;lt;FamousPlacesInLondon&amp;gt; famousPlacesOutLondon;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;public virtual IList&amp;lt;FamousPlacesInLondon&amp;gt; FamousPlacesOutLondon&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;get { return famousPlacesOutLondon; }&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;set { famousPlacesOutLondon = value; }&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;/p&gt;
&lt;p&gt;}&lt;/p&gt;
&lt;p&gt;public class FamousPlacesInLondon&lt;/p&gt;
&lt;p&gt;{&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;private int id;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;public virtual int Id&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;get { return id; }&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;set { id = value; }&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;private string link;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;public virtual string Link&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;get { return link; }&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;set { link = value; }&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;private string title;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;public virtual string Title&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;get { return title; }&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;set { title = value; }&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;}&lt;/p&gt;
&lt;p&gt;}&lt;/p&gt;
&lt;p&gt;My mapping are as follows:&lt;/p&gt;
&lt;p&gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; ?&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;hibernate-mapping xmlns=&amp;quot;urn:nhibernate-mapping-2.2&amp;quot; assembly=&amp;quot;Model&amp;quot; namespace=&amp;quot;Model&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;class name=&amp;quot;Model.GeneralInformation,Model&amp;quot; table=&amp;quot;GeneralInformation&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;&amp;lt;id name=&amp;quot;Id&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;generator class=&amp;quot;native&amp;quot; /&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;&amp;lt;/id&amp;gt; &amp;nbsp; &amp;nbsp;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;&amp;lt;bag name=&amp;quot;FamousPlacesInLondon&amp;quot; table=&amp;quot;FamousPlacesInLondon&amp;quot; cascade=&amp;quot;all&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;key column=&amp;quot;GeneralInformationId&amp;quot; /&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;one-to-many class=&amp;quot;Model.FamousPlacesInLondon,Model&amp;quot;/&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;&amp;lt;/bag&amp;gt; &amp;nbsp; &amp;nbsp;&lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;/class&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;/hibernate-mapping&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; ?&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;hibernate-mapping xmlns=&amp;quot;urn:nhibernate-mapping-2.2&amp;quot; assembly=&amp;quot;Model&amp;quot; &amp;nbsp;namespace=&amp;quot;Model&amp;quot; &amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;class name=&amp;quot;Model.FamousPlacesInLondon,Model&amp;quot; table=&amp;quot;FamousPlacesInLondon&amp;quot; &amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;&amp;lt;id name=&amp;quot;Id&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;generator class=&amp;quot;identity&amp;quot; /&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;&amp;lt;/id&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;&amp;lt;property name=&amp;quot;Link&amp;quot; column=&amp;quot;Link&amp;quot; type=&amp;quot;string&amp;quot; /&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;&amp;lt;property name=&amp;quot;Title&amp;quot; column=&amp;quot;Title&amp;quot; type=&amp;quot;string&amp;quot; /&amp;gt; &amp;nbsp; &amp;nbsp;&lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;/class&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;/hibernate-mapping&amp;gt;&lt;/p&gt;
&lt;p&gt;If I fill the GeneralInformation with data and do a save using NHibernate, everything gets inserted into the appropriate table, except the ForeignKey GeneralInformationId. What is wrong?&lt;/p&gt;
&lt;p&gt;TIA&lt;/p&gt;
&lt;p&gt;Yaz&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://devlicio.us/aggbug.aspx?PostID=46159" width="1" height="1"&gt;</description></item><item><title>re: Cache Revisited</title><link>http://devlicio.us/blogs/alan_northam/archive/2009/03/31/cache-revisited.aspx#45437</link><pubDate>Tue, 07 Apr 2009 17:02:49 GMT</pubDate><guid isPermaLink="false">40756a8b-6212-4073-9d98-6c26781577de:45437</guid><dc:creator>anortham</dc:creator><description>&lt;p&gt;Thomas:&lt;/p&gt;
&lt;p&gt;Not sure where the tgz came from, that&amp;#39;s out of my hands :)&lt;/p&gt;
&lt;p&gt;That definitely needs refactoring. &amp;nbsp;I&amp;#39;ll update it asap.&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://devlicio.us/aggbug.aspx?PostID=45437" width="1" height="1"&gt;</description></item><item><title>re: Cache Revisited</title><link>http://devlicio.us/blogs/alan_northam/archive/2009/03/31/cache-revisited.aspx#45433</link><pubDate>Tue, 07 Apr 2009 15:22:02 GMT</pubDate><guid isPermaLink="false">40756a8b-6212-4073-9d98-6c26781577de:45433</guid><dc:creator>Thomas G Mayfield</dc:creator><description>&lt;p&gt;AutoComplete.zip.tgz? Covering your bases? :)&lt;/p&gt;
&lt;p&gt;I see a section like that big (target != null) if block and can&amp;#39;t help but suggesting a rewrite for clarity--one that tells you what each branch does differently, and that uses far fewer lines:&lt;/p&gt;
&lt;p&gt;DateTime absoluteExpiration = Cache.NoAbsoluteExpiration;&lt;/p&gt;
&lt;p&gt;TimeSpan slidingExpiration = Cache.NoSlidingExpiration;&lt;/p&gt;
&lt;p&gt;switch( cacheExpiration )&lt;/p&gt;
&lt;p&gt;{&lt;/p&gt;
&lt;p&gt;	case CacheExpiration.Sliding:&lt;/p&gt;
&lt;p&gt;		slidingExpiration = new TimeSpan( 0, cacheTimeInMinutes, 0 );&lt;/p&gt;
&lt;p&gt;		break;&lt;/p&gt;
&lt;p&gt;	case CacheExpiration.Absolute:&lt;/p&gt;
&lt;p&gt;		absoluteExpiration = DateTime.Now.AddMinutes(cacheTimeInMinutes);&lt;/p&gt;
&lt;p&gt;		break;&lt;/p&gt;
&lt;p&gt;}&lt;/p&gt;
&lt;p&gt;cache.Insert(key, target, null, absoluteExpiration, slidingExpiration, CacheItemPriority.Normal, OnRemove);&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://devlicio.us/aggbug.aspx?PostID=45433" width="1" height="1"&gt;</description></item><item><title>re: Cache Revisited</title><link>http://devlicio.us/blogs/alan_northam/archive/2009/03/31/cache-revisited.aspx#45389</link><pubDate>Sun, 05 Apr 2009 18:40:33 GMT</pubDate><guid isPermaLink="false">40756a8b-6212-4073-9d98-6c26781577de:45389</guid><dc:creator>anortham</dc:creator><description>&lt;p&gt;@Scott&lt;/p&gt;
&lt;p&gt;If you look at my earlier post it is written just like that which requires T to be a reference type. &amp;nbsp;In this case I tried to make it as flexible as possible so I left off that constraint. &amp;nbsp;However you do have a possible exception. &amp;nbsp;So take your pick, reference types only or a possible cast exception.&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://devlicio.us/aggbug.aspx?PostID=45389" width="1" height="1"&gt;</description></item><item><title>re: Cache Revisited</title><link>http://devlicio.us/blogs/alan_northam/archive/2009/03/31/cache-revisited.aspx#45383</link><pubDate>Sun, 05 Apr 2009 02:07:51 GMT</pubDate><guid isPermaLink="false">40756a8b-6212-4073-9d98-6c26781577de:45383</guid><dc:creator>Scott Watermasysk</dc:creator><description>&lt;p&gt;One item that jumps out at me is this:&lt;/p&gt;
&lt;p&gt;var target = cache[key]; &amp;nbsp;&lt;/p&gt;
&lt;p&gt;And then using return (T)target;. &lt;/p&gt;
&lt;p&gt;You run the risk of finding an object based on the key but throwing an invalid cast exception. &lt;/p&gt;
&lt;p&gt;Might want to consider:&lt;/p&gt;
&lt;p&gt;var target = cache[key] as T;&lt;/p&gt;
&lt;p&gt;Of course this limits you to reference types, but could save you a hard issue to debug later. &lt;/p&gt;
&lt;p&gt;-Scott&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://devlicio.us/aggbug.aspx?PostID=45383" width="1" height="1"&gt;</description></item><item><title>re: Cache Revisited</title><link>http://devlicio.us/blogs/alan_northam/archive/2009/03/31/cache-revisited.aspx#45336</link><pubDate>Wed, 01 Apr 2009 14:43:06 GMT</pubDate><guid isPermaLink="false">40756a8b-6212-4073-9d98-6c26781577de:45336</guid><dc:creator>anortham</dc:creator><description>&lt;p&gt;@meisinger Yup, they got lost in the html river. &amp;nbsp;I&amp;#39;ve added them back.&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://devlicio.us/aggbug.aspx?PostID=45336" width="1" height="1"&gt;</description></item><item><title>re: Cache Revisited</title><link>http://devlicio.us/blogs/alan_northam/archive/2009/03/31/cache-revisited.aspx#45334</link><pubDate>Wed, 01 Apr 2009 14:31:34 GMT</pubDate><guid isPermaLink="false">40756a8b-6212-4073-9d98-6c26781577de:45334</guid><dc:creator>meisinger</dc:creator><description>&lt;p&gt;is it my imagination or are there some missing angle brackets in your example code?&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://devlicio.us/aggbug.aspx?PostID=45334" width="1" height="1"&gt;</description></item><item><title>Cache Revisited - Alan Northam - Devlicio.us</title><link>http://devlicio.us/blogs/alan_northam/archive/2009/03/31/cache-revisited.aspx#45325</link><pubDate>Wed, 01 Apr 2009 09:33:11 GMT</pubDate><guid isPermaLink="false">40756a8b-6212-4073-9d98-6c26781577de:45325</guid><dc:creator>DotNetShoutout</dc:creator><description>&lt;p&gt;Thank you for submitting this cool story - Trackback from DotNetShoutout&lt;/p&gt;
&lt;img src="http://devlicio.us/aggbug.aspx?PostID=45325" width="1" height="1"&gt;</description></item><item><title>re: Getting Started with NHibernate: Part III</title><link>http://devlicio.us/blogs/alan_northam/archive/2007/05/23/getting-started-with-nhibernate-part-iii.aspx#44075</link><pubDate>Tue, 10 Feb 2009 05:43:44 GMT</pubDate><guid isPermaLink="false">40756a8b-6212-4073-9d98-6c26781577de:44075</guid><dc:creator>JavaRanch</dc:creator><description>&lt;p&gt;could u plz send me the difference between &amp;lt;bag&amp;gt; element &lt;/p&gt;
&lt;p&gt;and the &amp;lt;property &amp;gt; element in .hbm.xml and when to use these tags&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://devlicio.us/aggbug.aspx?PostID=44075" width="1" height="1"&gt;</description></item><item><title>re: Getting Started with NHibernate: Part I</title><link>http://devlicio.us/blogs/alan_northam/archive/2007/05/19/getting-started-with-nhibernate-part-i.aspx#44071</link><pubDate>Mon, 09 Feb 2009 19:32:11 GMT</pubDate><guid isPermaLink="false">40756a8b-6212-4073-9d98-6c26781577de:44071</guid><dc:creator>anortham</dc:creator><description>&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://devlicio.us/blogs/alan_northam/archive/2007/05/22/getting-started-with-nhibernate-part-ii.aspx"&gt;devlicio.us/.../getting-started-with-nhibernate-part-ii.aspx&lt;/a&gt;&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://devlicio.us/aggbug.aspx?PostID=44071" width="1" height="1"&gt;</description></item><item><title>re: Getting Started with NHibernate: Part IV</title><link>http://devlicio.us/blogs/alan_northam/archive/2007/07/26/getting-started-with-nhibernate-part-iv.aspx#43551</link><pubDate>Mon, 29 Dec 2008 07:40:42 GMT</pubDate><guid isPermaLink="false">40756a8b-6212-4073-9d98-6c26781577de:43551</guid><dc:creator>twister</dc:creator><description>&lt;p&gt;Again me.&lt;/p&gt;
&lt;p&gt;I solved this. &lt;/p&gt;
&lt;p&gt;I manually added a record to Database Application table with name &amp;quot;NHBlog&amp;quot;.&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://devlicio.us/aggbug.aspx?PostID=43551" width="1" height="1"&gt;</description></item><item><title>re: Getting Started with NHibernate: Part IV</title><link>http://devlicio.us/blogs/alan_northam/archive/2007/07/26/getting-started-with-nhibernate-part-iv.aspx#43541</link><pubDate>Fri, 26 Dec 2008 08:52:17 GMT</pubDate><guid isPermaLink="false">40756a8b-6212-4073-9d98-6c26781577de:43541</guid><dc:creator>twister</dc:creator><description>&lt;p&gt;After some effort I can run it with vs.2008&lt;/p&gt;
&lt;p&gt;But I cant still pass login page. Now error like this&lt;/p&gt;
&lt;p&gt;&amp;quot;not-null property references a null or transient value: NHBlog.BusinessEntities.Security.User.Application&amp;quot;&lt;/p&gt;
&lt;p&gt;in membership providers. &lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://devlicio.us/aggbug.aspx?PostID=43541" width="1" height="1"&gt;</description></item><item><title>re: Getting Started with NHibernate: Part IV</title><link>http://devlicio.us/blogs/alan_northam/archive/2007/07/26/getting-started-with-nhibernate-part-iv.aspx#43534</link><pubDate>Thu, 25 Dec 2008 15:57:44 GMT</pubDate><guid isPermaLink="false">40756a8b-6212-4073-9d98-6c26781577de:43534</guid><dc:creator>twister</dc:creator><description>&lt;p&gt;I cant run the application. It gives error in web.config about roleprovider. &lt;/p&gt;
&lt;p&gt;&amp;lt;add name=&amp;quot;NHibernateRoleProvider&amp;quot; type=&amp;quot;NHBlog.DataAccess.Security.NHibernateRoleProvider, NHBlog.DataAccess&amp;quot; applicationName=&amp;quot;NHBlog&amp;quot;/&amp;gt;&lt;/p&gt;
&lt;p&gt;Why do you think?&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://devlicio.us/aggbug.aspx?PostID=43534" width="1" height="1"&gt;</description></item></channel></rss>