<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for CTICoder</title>
	<atom:link href="http://cticoder.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://cticoder.wordpress.com</link>
	<description>A random spillage of programming (and other) thoughts</description>
	<lastBuildDate>Mon, 26 Oct 2009 21:55:01 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on BizTalk 2009 and BTARN 3.5 on Windows Server 2008 Installation by Terry Thibodeau</title>
		<link>http://cticoder.wordpress.com/2009/08/20/biztalk-2009-and-btarn-3-5-on-windows-server-2008-installation/#comment-42</link>
		<dc:creator>Terry Thibodeau</dc:creator>
		<pubDate>Mon, 26 Oct 2009 21:55:01 +0000</pubDate>
		<guid isPermaLink="false">http://cticoder.wordpress.com/2009/08/20/biztalk-2009-and-btarn-3-5-on-windows-server-2008-installation/#comment-42</guid>
		<description>THANK YOU, THANK YOU, THANK YOU. Man, this was soooo frustrating!!!!</description>
		<content:encoded><![CDATA[<p>THANK YOU, THANK YOU, THANK YOU. Man, this was soooo frustrating!!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Windows 7 Slow.  Constant Hard Drive Activity. by ciro</title>
		<link>http://cticoder.wordpress.com/2009/05/06/windows-7-slow-constant-hard-drive-activity/#comment-40</link>
		<dc:creator>ciro</dc:creator>
		<pubDate>Thu, 22 Oct 2009 01:02:41 +0000</pubDate>
		<guid isPermaLink="false">http://cticoder.wordpress.com/2009/05/06/windows-7-slow-constant-hard-drive-activity/#comment-40</guid>
		<description>Thanks man that solved it over here too judgin how many people is experiencing that u should have a monument,google on that to have a rogue idea on how widespread the problem is,strange is over here it happened only few days after the installation...</description>
		<content:encoded><![CDATA[<p>Thanks man that solved it over here too judgin how many people is experiencing that u should have a monument,google on that to have a rogue idea on how widespread the problem is,strange is over here it happened only few days after the installation&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Windows 7 Slow.  Constant Hard Drive Activity. by John</title>
		<link>http://cticoder.wordpress.com/2009/05/06/windows-7-slow-constant-hard-drive-activity/#comment-39</link>
		<dc:creator>John</dc:creator>
		<pubDate>Sun, 18 Oct 2009 13:52:02 +0000</pubDate>
		<guid isPermaLink="false">http://cticoder.wordpress.com/2009/05/06/windows-7-slow-constant-hard-drive-activity/#comment-39</guid>
		<description>That was exactly my problem as well. I was starting to wonder if I should go back to Vista, but everything is normal now.
Thanks for the info.</description>
		<content:encoded><![CDATA[<p>That was exactly my problem as well. I was starting to wonder if I should go back to Vista, but everything is normal now.<br />
Thanks for the info.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Anonymous Workflow Execution in Sharepoint 2007 by majox</title>
		<link>http://cticoder.wordpress.com/2008/12/24/anonymous-workflow-execution-in-sharepoint-2007/#comment-38</link>
		<dc:creator>majox</dc:creator>
		<pubDate>Mon, 05 Oct 2009 09:52:33 +0000</pubDate>
		<guid isPermaLink="false">http://cticoder.wordpress.com/2008/12/24/anonymous-workflow-execution-in-sharepoint-2007/#comment-38</guid>
		<description>I can&#039;t execute the workflow I get the classic out of memory error</description>
		<content:encoded><![CDATA[<p>I can&#8217;t execute the workflow I get the classic out of memory error</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Object Inheritance in Entity Framework by Scott Taylor</title>
		<link>http://cticoder.wordpress.com/2008/08/16/object-inheritance-in-entity-framework/#comment-36</link>
		<dc:creator>Scott Taylor</dc:creator>
		<pubDate>Sun, 27 Sep 2009 18:06:52 +0000</pubDate>
		<guid isPermaLink="false">http://cticoder.wordpress.com/?p=58#comment-36</guid>
		<description>I&#039;m not clear on how using a guid instead of an int is going to appreciably &quot;mitigate the size&quot; of the base table.  Either way, you&#039;re going to have one row per object instance, no matter how deep or shallow the rest of the hierarchy is.  Using a guid for the primary key does make sense, however, but for the usual reasons of ensuring uniqueness in various scenarios.

I would recommend that you stay away from the idea of trying to make a &quot;smart key&quot; out of a guid...facts used for constraints should *always* be stored as separate attributes....the guid key should *only* be used to express relationships between tables (as well as to ensure that individual records can be reliably selected).

As far as retrieval performance goes, a properly indexed table hierarchy will, if anything, be faster than retrieving records from a single table (as in the Table-Per-Hierarchy scenario).  If you are concerned about selecting the entire set of records at once (for example, your database with 330,000 items), I would recommend using some form of the data repository pattern, where you can select just the records of interest from what amounts to a virtual database layer.</description>
		<content:encoded><![CDATA[<p>I&#8217;m not clear on how using a guid instead of an int is going to appreciably &#8220;mitigate the size&#8221; of the base table.  Either way, you&#8217;re going to have one row per object instance, no matter how deep or shallow the rest of the hierarchy is.  Using a guid for the primary key does make sense, however, but for the usual reasons of ensuring uniqueness in various scenarios.</p>
<p>I would recommend that you stay away from the idea of trying to make a &#8220;smart key&#8221; out of a guid&#8230;facts used for constraints should *always* be stored as separate attributes&#8230;.the guid key should *only* be used to express relationships between tables (as well as to ensure that individual records can be reliably selected).</p>
<p>As far as retrieval performance goes, a properly indexed table hierarchy will, if anything, be faster than retrieving records from a single table (as in the Table-Per-Hierarchy scenario).  If you are concerned about selecting the entire set of records at once (for example, your database with 330,000 items), I would recommend using some form of the data repository pattern, where you can select just the records of interest from what amounts to a virtual database layer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Anonymous Workflow Execution in Sharepoint 2007 by Shaun McDonnell</title>
		<link>http://cticoder.wordpress.com/2008/12/24/anonymous-workflow-execution-in-sharepoint-2007/#comment-35</link>
		<dc:creator>Shaun McDonnell</dc:creator>
		<pubDate>Mon, 21 Sep 2009 17:33:32 +0000</pubDate>
		<guid isPermaLink="false">http://cticoder.wordpress.com/2008/12/24/anonymous-workflow-execution-in-sharepoint-2007/#comment-35</guid>
		<description>When you say it is not working, how do you mean?</description>
		<content:encoded><![CDATA[<p>When you say it is not working, how do you mean?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Anonymous Workflow Execution in Sharepoint 2007 by majox</title>
		<link>http://cticoder.wordpress.com/2008/12/24/anonymous-workflow-execution-in-sharepoint-2007/#comment-34</link>
		<dc:creator>majox</dc:creator>
		<pubDate>Sat, 19 Sep 2009 16:51:42 +0000</pubDate>
		<guid isPermaLink="false">http://cticoder.wordpress.com/2008/12/24/anonymous-workflow-execution-in-sharepoint-2007/#comment-34</guid>
		<description>Hi I have tried to add an event receiver to list with your tutorial, but its not working . Even when I have so little code like this its not working: 
public override void ItemAdded(SPItemEventProperties properties)
        {

            base.ItemAdded(properties);
            
            
        }</description>
		<content:encoded><![CDATA[<p>Hi I have tried to add an event receiver to list with your tutorial, but its not working . Even when I have so little code like this its not working:<br />
public override void ItemAdded(SPItemEventProperties properties)<br />
        {</p>
<p>            base.ItemAdded(properties);</p>
<p>        }</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Anonymous Workflow Execution in Sharepoint 2007 by Shaun McDonnell</title>
		<link>http://cticoder.wordpress.com/2008/12/24/anonymous-workflow-execution-in-sharepoint-2007/#comment-33</link>
		<dc:creator>Shaun McDonnell</dc:creator>
		<pubDate>Tue, 15 Sep 2009 19:13:04 +0000</pubDate>
		<guid isPermaLink="false">http://cticoder.wordpress.com/2008/12/24/anonymous-workflow-execution-in-sharepoint-2007/#comment-33</guid>
		<description>Sorry, I don&#039;t have this in a package but the code would work just fine in a server-farm environment.

-Shaun</description>
		<content:encoded><![CDATA[<p>Sorry, I don&#8217;t have this in a package but the code would work just fine in a server-farm environment.</p>
<p>-Shaun</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Anonymous Workflow Execution in Sharepoint 2007 by steve</title>
		<link>http://cticoder.wordpress.com/2008/12/24/anonymous-workflow-execution-in-sharepoint-2007/#comment-32</link>
		<dc:creator>steve</dc:creator>
		<pubDate>Tue, 15 Sep 2009 19:10:18 +0000</pubDate>
		<guid isPermaLink="false">http://cticoder.wordpress.com/2008/12/24/anonymous-workflow-execution-in-sharepoint-2007/#comment-32</guid>
		<description>Do you have this in a MS VS 2008 project or a package that can be deployed to SP Farm?</description>
		<content:encoded><![CDATA[<p>Do you have this in a MS VS 2008 project or a package that can be deployed to SP Farm?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Anonymous Workflow Execution in Sharepoint 2007 by Richard</title>
		<link>http://cticoder.wordpress.com/2008/12/24/anonymous-workflow-execution-in-sharepoint-2007/#comment-27</link>
		<dc:creator>Richard</dc:creator>
		<pubDate>Tue, 26 May 2009 13:22:47 +0000</pubDate>
		<guid isPermaLink="false">http://cticoder.wordpress.com/2008/12/24/anonymous-workflow-execution-in-sharepoint-2007/#comment-27</guid>
		<description>Very impressive website, good job</description>
		<content:encoded><![CDATA[<p>Very impressive website, good job</p>
]]></content:encoded>
	</item>
</channel>
</rss>
