<?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/"
		>
<channel>
	<title>Comments for Jason Dentler</title>
	<atom:link href="http://jasondentler.com/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://jasondentler.com/blog</link>
	<description>I&#039;m just here for the code</description>
	<lastBuildDate>Thu, 22 Jul 2010 12:16:51 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Visual Studio 2010 publish / web.config conflict by Simon Lomax</title>
		<link>http://jasondentler.com/blog/2010/07/visual-studio-2010-publish-web-config-conflict/comment-page-1/#comment-969</link>
		<dc:creator>Simon Lomax</dc:creator>
		<pubDate>Thu, 22 Jul 2010 12:16:51 +0000</pubDate>
		<guid isPermaLink="false">http://jasondentler.com/blog/2010/07/visual-studio-2010-publish-web-config-conflict/#comment-969</guid>
		<description>@Steve, thanks, that solved the problem.</description>
		<content:encoded><![CDATA[<p>@Steve, thanks, that solved the problem.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Visual Studio 2010 publish / web.config conflict by Steve Evans</title>
		<link>http://jasondentler.com/blog/2010/07/visual-studio-2010-publish-web-config-conflict/comment-page-1/#comment-968</link>
		<dc:creator>Steve Evans</dc:creator>
		<pubDate>Wed, 21 Jul 2010 21:51:41 +0000</pubDate>
		<guid isPermaLink="false">http://jasondentler.com/blog/2010/07/visual-studio-2010-publish-web-config-conflict/#comment-968</guid>
		<description>Bah...forget to escape the tags:


    &lt;ItemGroup&gt;
      &lt;BadPackageFiles Include=&quot;$(MSBuildProjectDirectory)\obj\**\Package\PackageTmp\*.*&quot; /&gt;
    &lt;/ItemGroup&gt;
    &lt;Message Text=&quot;Removing the invalid Package files&quot; /&gt;
    &lt;Delete Files=&quot;@(BadPackageFiles)&quot; /&gt;</description>
		<content:encoded><![CDATA[<p>Bah&#8230;forget to escape the tags:</p>
<p>    &lt;ItemGroup&gt;<br />
      &lt;BadPackageFiles Include=&#8221;$(MSBuildProjectDirectory)\obj\**\Package\PackageTmp\*.*&#8221; /&gt;<br />
    &lt;/ItemGroup&gt;<br />
    &lt;Message Text=&#8221;Removing the invalid Package files&#8221; /&gt;<br />
    &lt;Delete Files=&#8221;@(BadPackageFiles)&#8221; /&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Visual Studio 2010 publish / web.config conflict by Steve Evans</title>
		<link>http://jasondentler.com/blog/2010/07/visual-studio-2010-publish-web-config-conflict/comment-page-1/#comment-967</link>
		<dc:creator>Steve Evans</dc:creator>
		<pubDate>Wed, 21 Jul 2010 21:50:37 +0000</pubDate>
		<guid isPermaLink="false">http://jasondentler.com/blog/2010/07/visual-studio-2010-publish-web-config-conflict/#comment-967</guid>
		<description>I came across the same issue, but I figured it out by clicking into the error and looking at the file it had opened up.  The give away was the fact that by default it&#039;s &quot;Web.config&quot; and when I double clicked the error it opened &quot;web.config&quot;  The casing of the &quot;w&quot; seemed odd, but thanks to Visual Studio showing you the full path of the file when you over over the document&#039;s tab it helped figure out what was going on.  In my case I modified the BeforeBuild target of the project file to include the following:

    
      
    
    
    </description>
		<content:encoded><![CDATA[<p>I came across the same issue, but I figured it out by clicking into the error and looking at the file it had opened up.  The give away was the fact that by default it&#8217;s &#8220;Web.config&#8221; and when I double clicked the error it opened &#8220;web.config&#8221;  The casing of the &#8220;w&#8221; seemed odd, but thanks to Visual Studio showing you the full path of the file when you over over the document&#8217;s tab it helped figure out what was going on.  In my case I modified the BeforeBuild target of the project file to include the following:</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Visual Studio 2010 publish / web.config conflict by Jason</title>
		<link>http://jasondentler.com/blog/2010/07/visual-studio-2010-publish-web-config-conflict/comment-page-1/#comment-966</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Tue, 20 Jul 2010 23:25:49 +0000</pubDate>
		<guid isPermaLink="false">http://jasondentler.com/blog/2010/07/visual-studio-2010-publish-web-config-conflict/#comment-966</guid>
		<description>Yep. It&#039;s especially annoying because a person can google around for hours and find nothing but advice about IIS settings.</description>
		<content:encoded><![CDATA[<p>Yep. It&#8217;s especially annoying because a person can google around for hours and find nothing but advice about IIS settings.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Visual Studio 2010 publish / web.config conflict by Simon Lomax</title>
		<link>http://jasondentler.com/blog/2010/07/visual-studio-2010-publish-web-config-conflict/comment-page-1/#comment-965</link>
		<dc:creator>Simon Lomax</dc:creator>
		<pubDate>Tue, 20 Jul 2010 18:11:09 +0000</pubDate>
		<guid isPermaLink="false">http://jasondentler.com/blog/2010/07/visual-studio-2010-publish-web-config-conflict/#comment-965</guid>
		<description>Jason, I was getting exactly the same issue last week. I posted this question on StackOverflow but got no replies.

http://stackoverflow.com/questions/3204747/problem-after-publishing-web-application-from-vs-2010

Its a real pain to have to remember to delete the obj folder all the time, which is what I&#039;ve been doing too. Be great if someone knows a fix for this.</description>
		<content:encoded><![CDATA[<p>Jason, I was getting exactly the same issue last week. I posted this question on StackOverflow but got no replies.</p>
<p><a href="http://stackoverflow.com/questions/3204747/problem-after-publishing-web-application-from-vs-2010" rel="nofollow">http://stackoverflow.com/questions/3204747/problem-after-publishing-web-application-from-vs-2010</a></p>
<p>Its a real pain to have to remember to delete the obj folder all the time, which is what I&#8217;ve been doing too. Be great if someone knows a fix for this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on NHibernate Auditing v3 &#8211; Poor Man&#8217;s Envers by Jason</title>
		<link>http://jasondentler.com/blog/2010/07/nhibernate-auditing-v3-poor-mans-envers/comment-page-1/#comment-959</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Tue, 06 Jul 2010 13:13:37 +0000</pubDate>
		<guid isPermaLink="false">http://jasondentler.com/blog/2010/07/nhibernate-auditing-v3-poor-mans-envers/#comment-959</guid>
		<description>That&#039;s a pretty slick solution, but I don&#039;t see the benefit of saving a few tables over the additional application complexity.</description>
		<content:encoded><![CDATA[<p>That&#8217;s a pretty slick solution, but I don&#8217;t see the benefit of saving a few tables over the additional application complexity.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on NHibernate Auditing v3 &#8211; Poor Man&#8217;s Envers by marek</title>
		<link>http://jasondentler.com/blog/2010/07/nhibernate-auditing-v3-poor-mans-envers/comment-page-1/#comment-958</link>
		<dc:creator>marek</dc:creator>
		<pubDate>Tue, 06 Jul 2010 07:30:06 +0000</pubDate>
		<guid isPermaLink="false">http://jasondentler.com/blog/2010/07/nhibernate-auditing-v3-poor-mans-envers/#comment-958</guid>
		<description>Hi Jason,

well, yes, the approach I&#039;m talking about is maybe not 100% relational, but, I think it could be tuned to be so.
Please see following solution:
http://www.matthidinger.com/archive/2008/05/08/linq-to-sql-audit-trail.aspx
It is using Linq To Sql but we implemented this idea using NHibernate.
Please note in Audit table TableKey and TableName, using polymorphism you could make relation to your entity.

Thanks.</description>
		<content:encoded><![CDATA[<p>Hi Jason,</p>
<p>well, yes, the approach I&#8217;m talking about is maybe not 100% relational, but, I think it could be tuned to be so.<br />
Please see following solution:<br />
<a href="http://www.matthidinger.com/archive/2008/05/08/linq-to-sql-audit-trail.aspx" rel="nofollow">http://www.matthidinger.com/archive/2008/05/08/linq-to-sql-audit-trail.aspx</a><br />
It is using Linq To Sql but we implemented this idea using NHibernate.<br />
Please note in Audit table TableKey and TableName, using polymorphism you could make relation to your entity.</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on NHibernate Auditing v3 &#8211; Poor Man&#8217;s Envers by Jason</title>
		<link>http://jasondentler.com/blog/2010/07/nhibernate-auditing-v3-poor-mans-envers/comment-page-1/#comment-957</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Mon, 05 Jul 2010 10:51:00 +0000</pubDate>
		<guid isPermaLink="false">http://jasondentler.com/blog/2010/07/nhibernate-auditing-v3-poor-mans-envers/#comment-957</guid>
		<description>Thanks for the comment Marek. 

Would you store your model in a single table with only 3 columns (EntityId, Key, Value). Why not? It&#039;s not relational.

I&#039;ve seen many systems where there is only one Audit table for everything. They tend to be black holes where information goes in and nothing ever escapes.

The point of this exercise is to make this audit data just as available and accessible as the real application data.</description>
		<content:encoded><![CDATA[<p>Thanks for the comment Marek. </p>
<p>Would you store your model in a single table with only 3 columns (EntityId, Key, Value). Why not? It&#8217;s not relational.</p>
<p>I&#8217;ve seen many systems where there is only one Audit table for everything. They tend to be black holes where information goes in and nothing ever escapes.</p>
<p>The point of this exercise is to make this audit data just as available and accessible as the real application data.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on NHibernate Auditing v3 &#8211; Poor Man&#8217;s Envers by marek</title>
		<link>http://jasondentler.com/blog/2010/07/nhibernate-auditing-v3-poor-mans-envers/comment-page-1/#comment-956</link>
		<dc:creator>marek</dc:creator>
		<pubDate>Mon, 05 Jul 2010 08:22:06 +0000</pubDate>
		<guid isPermaLink="false">http://jasondentler.com/blog/2010/07/nhibernate-auditing-v3-poor-mans-envers/#comment-956</guid>
		<description>Hi,

interesting... 
I don&#039;t know Envers concept, but I&#039;m afraid that the amount of extra tables (additional audit table per entity) can be disadvantage of the solution.
I think there should be a way to do it using two tables.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>interesting&#8230;<br />
I don&#8217;t know Envers concept, but I&#8217;m afraid that the amount of extra tables (additional audit table per entity) can be disadvantage of the solution.<br />
I think there should be a way to do it using two tables.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on NHibernate Auditing v3 &#8211; Poor Man&#8217;s Envers by Tweets that mention NHibernate Auditing v3 – Poor Man’s Envers « Jason Dentler -- Topsy.com</title>
		<link>http://jasondentler.com/blog/2010/07/nhibernate-auditing-v3-poor-mans-envers/comment-page-1/#comment-955</link>
		<dc:creator>Tweets that mention NHibernate Auditing v3 – Poor Man’s Envers « Jason Dentler -- Topsy.com</dc:creator>
		<pubDate>Sun, 04 Jul 2010 21:00:15 +0000</pubDate>
		<guid isPermaLink="false">http://jasondentler.com/blog/2010/07/nhibernate-auditing-v3-poor-mans-envers/#comment-955</guid>
		<description>[...] This post was mentioned on Twitter by José F. Romaniello. José F. Romaniello said: RT @jasondentler: Blogged: NHibernate Auditing v3 - Poor Man&#039;s Envers http://bit.ly/c2fAvg Thanks to @jfroma [...]</description>
		<content:encoded><![CDATA[<p>[...] This post was mentioned on Twitter by José F. Romaniello. José F. Romaniello said: RT @jasondentler: Blogged: NHibernate Auditing v3 &#8211; Poor Man&#39;s Envers <a href="http://bit.ly/c2fAvg" rel="nofollow">http://bit.ly/c2fAvg</a> Thanks to @jfroma [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
