<?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 on: WilsonORWrapper: better, stronger, (maybe) faster</title>
	<atom:link href="http://www.sidesofmarch.com/index.php/archive/2007/06/01/wilsonorwrapper-better-stronger-maybe-faster/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sidesofmarch.com/index.php/archive/2007/06/01/wilsonorwrapper-better-stronger-maybe-faster/</link>
	<description>Thoughts on life, liberty, and information technology</description>
	<lastBuildDate>Tue, 24 Jan 2012 10:43:34 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: brian</title>
		<link>http://www.sidesofmarch.com/index.php/archive/2007/06/01/wilsonorwrapper-better-stronger-maybe-faster/#comment-143</link>
		<dc:creator>brian</dc:creator>
		<pubDate>Tue, 03 Jul 2007 20:12:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.sidesofmarch.com/index.php/archive/2007/06/01/wilsonorwrapper-better-stronger-maybe-faster/#comment-143</guid>
		<description>You are using an older version of the code. Download the latest version, which has a much better GetHashCode() function.</description>
		<content:encoded><![CDATA[<p>You are using an older version of the code. Download the latest version, which has a much better GetHashCode() function.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nikos</title>
		<link>http://www.sidesofmarch.com/index.php/archive/2007/06/01/wilsonorwrapper-better-stronger-maybe-faster/#comment-140</link>
		<dc:creator>Nikos</dc:creator>
		<pubDate>Tue, 03 Jul 2007 13:13:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.sidesofmarch.com/index.php/archive/2007/06/01/wilsonorwrapper-better-stronger-maybe-faster/#comment-140</guid>
		<description>Hello... it seems we found a problem with the GetHashCode() method of the Entities.

We have an entity with a composite key of the following values:
key1 = 44
key2 = 1
key3 = &quot;published&quot;

We are trying to serialize the Entity to XML where the GetHashCode() method is called and generates a huge number wich is obviously beyond the int limit. This is where execution enters the following while loop of the GetHashCode() method which it never exits..

    while ( int.TryParse(hashstring, out hashcode) == false )
                hashcode = hashcode / 11;

Are there any suggestions?</description>
		<content:encoded><![CDATA[<p>Hello&#8230; it seems we found a problem with the GetHashCode() method of the Entities.</p>
<p>We have an entity with a composite key of the following values:<br />
key1 = 44<br />
key2 = 1<br />
key3 = &#8220;published&#8221;</p>
<p>We are trying to serialize the Entity to XML where the GetHashCode() method is called and generates a huge number wich is obviously beyond the int limit. This is where execution enters the following while loop of the GetHashCode() method which it never exits..</p>
<p>    while ( int.TryParse(hashstring, out hashcode) == false )<br />
                hashcode = hashcode / 11;</p>
<p>Are there any suggestions?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: brian</title>
		<link>http://www.sidesofmarch.com/index.php/archive/2007/06/01/wilsonorwrapper-better-stronger-maybe-faster/#comment-70</link>
		<dc:creator>brian</dc:creator>
		<pubDate>Wed, 13 Jun 2007 22:45:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.sidesofmarch.com/index.php/archive/2007/06/01/wilsonorwrapper-better-stronger-maybe-faster/#comment-70</guid>
		<description>Sounds good -- a VB.Net example will be a nice thing to add to the otherwise C# mix. ;)</description>
		<content:encoded><![CDATA[<p>Sounds good &#8212; a VB.Net example will be a nice thing to add to the otherwise C# mix. <img src='http://www.sidesofmarch.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marcel</title>
		<link>http://www.sidesofmarch.com/index.php/archive/2007/06/01/wilsonorwrapper-better-stronger-maybe-faster/#comment-69</link>
		<dc:creator>Marcel</dc:creator>
		<pubDate>Wed, 13 Jun 2007 11:50:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.sidesofmarch.com/index.php/archive/2007/06/01/wilsonorwrapper-better-stronger-maybe-faster/#comment-69</guid>
		<description>Hi Brian,

I am still reading this blog. I am currently writing an VB.Net WinForms application based on your example (users, departments). As soon as I have finished this little demo project, I will zip you the whole project.

Best regards,

Marcel</description>
		<content:encoded><![CDATA[<p>Hi Brian,</p>
<p>I am still reading this blog. I am currently writing an VB.Net WinForms application based on your example (users, departments). As soon as I have finished this little demo project, I will zip you the whole project.</p>
<p>Best regards,</p>
<p>Marcel</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: brian</title>
		<link>http://www.sidesofmarch.com/index.php/archive/2007/06/01/wilsonorwrapper-better-stronger-maybe-faster/#comment-64</link>
		<dc:creator>brian</dc:creator>
		<pubDate>Tue, 12 Jun 2007 13:46:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.sidesofmarch.com/index.php/archive/2007/06/01/wilsonorwrapper-better-stronger-maybe-faster/#comment-64</guid>
		<description>&quot;Browse source&quot; on the project site allows you to browse the source code repository one file at a time. 

You can get the source code two ways:

1. Using a Subversion client, or
2. By going to the releases page at http://www.hosted-projects.com/trac/computersims/wilsonorwrapper/wiki/Releases and clicking on a release to download. I just added a source code release on this page.</description>
		<content:encoded><![CDATA[<p>&#8220;Browse source&#8221; on the project site allows you to browse the source code repository one file at a time. </p>
<p>You can get the source code two ways:</p>
<p>1. Using a Subversion client, or<br />
2. By going to the releases page at <a href="http://www.hosted-projects.com/trac/computersims/wilsonorwrapper/wiki/Releases" rel="nofollow">http://www.hosted-projects.com/trac/computersims/wilsonorwrapper/wiki/Releases</a> and clicking on a release to download. I just added a source code release on this page.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matthew</title>
		<link>http://www.sidesofmarch.com/index.php/archive/2007/06/01/wilsonorwrapper-better-stronger-maybe-faster/#comment-62</link>
		<dc:creator>Matthew</dc:creator>
		<pubDate>Mon, 11 Jun 2007 16:00:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.sidesofmarch.com/index.php/archive/2007/06/01/wilsonorwrapper-better-stronger-maybe-faster/#comment-62</guid>
		<description>How the heck do I download the source code???  There is a link to &quot;browse source&quot; on TRAC but how can I get it without downloading each file individually? I tried clicking on &quot;Zip Archive&quot; on the bottom but it gives me a permissions error.  Finally, should I be downloading from the Trunk or the Branches?
I am sooooo confused.</description>
		<content:encoded><![CDATA[<p>How the heck do I download the source code???  There is a link to &#8220;browse source&#8221; on TRAC but how can I get it without downloading each file individually? I tried clicking on &#8220;Zip Archive&#8221; on the bottom but it gives me a permissions error.  Finally, should I be downloading from the Trunk or the Branches?<br />
I am sooooo confused.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: brian</title>
		<link>http://www.sidesofmarch.com/index.php/archive/2007/06/01/wilsonorwrapper-better-stronger-maybe-faster/#comment-58</link>
		<dc:creator>brian</dc:creator>
		<pubDate>Thu, 07 Jun 2007 19:26:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.sidesofmarch.com/index.php/archive/2007/06/01/wilsonorwrapper-better-stronger-maybe-faster/#comment-58</guid>
		<description>Thanks -- keep in mind that the project is very much &quot;open source/community&quot;.

And @marcel -- if you&#039;re still reading -- I have successfully used this with MySQL. In fact, I used the exact same code against schematically-identical MySQL and MSSQL database -- a very nice thing indeed. :)</description>
		<content:encoded><![CDATA[<p>Thanks &#8212; keep in mind that the project is very much &#8220;open source/community&#8221;.</p>
<p>And @marcel &#8212; if you&#8217;re still reading &#8212; I have successfully used this with MySQL. In fact, I used the exact same code against schematically-identical MySQL and MSSQL database &#8212; a very nice thing indeed. <img src='http://www.sidesofmarch.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wayde</title>
		<link>http://www.sidesofmarch.com/index.php/archive/2007/06/01/wilsonorwrapper-better-stronger-maybe-faster/#comment-57</link>
		<dc:creator>wayde</dc:creator>
		<pubDate>Wed, 06 Jun 2007 17:40:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.sidesofmarch.com/index.php/archive/2007/06/01/wilsonorwrapper-better-stronger-maybe-faster/#comment-57</guid>
		<description>Sure Brian!

Since I&#039;m working on this, I&#039;ll work up an example application demonstrating how to configure your framework generated objects with the ObjectDataSource control and the radGrid control developed by Microsoft.  Based on my pervious experience, I think I may have a few suggestions for you on modifications you may want to make in your codebase (and corresponding codesmith templates).

When I have something ... I&#039;ll send it your way.

- wayde</description>
		<content:encoded><![CDATA[<p>Sure Brian!</p>
<p>Since I&#8217;m working on this, I&#8217;ll work up an example application demonstrating how to configure your framework generated objects with the ObjectDataSource control and the radGrid control developed by Microsoft.  Based on my pervious experience, I think I may have a few suggestions for you on modifications you may want to make in your codebase (and corresponding codesmith templates).</p>
<p>When I have something &#8230; I&#8217;ll send it your way.</p>
<p>- wayde</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: brian</title>
		<link>http://www.sidesofmarch.com/index.php/archive/2007/06/01/wilsonorwrapper-better-stronger-maybe-faster/#comment-55</link>
		<dc:creator>brian</dc:creator>
		<pubDate>Wed, 06 Jun 2007 13:36:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.sidesofmarch.com/index.php/archive/2007/06/01/wilsonorwrapper-better-stronger-maybe-faster/#comment-55</guid>
		<description>@Marcel,

Are you using a licensed version of the O/R mapper or a demo version? The demo version will give a license error when running outside Visual Studio, which means it&#039;ll give an error when running in NUnit. Note that the O/R mapper DLL in the references folder is the demo version (for obvious reasons).

Glad to hear you are having no problems otherwise! I&#039;ll look into the unit tests to see if there&#039;s a lingering issue. 

Sorry that the templates are C# only -- if someone wants to convert them to VB.Net I&#039;ll add them to the distribution.</description>
		<content:encoded><![CDATA[<p>@Marcel,</p>
<p>Are you using a licensed version of the O/R mapper or a demo version? The demo version will give a license error when running outside Visual Studio, which means it&#8217;ll give an error when running in NUnit. Note that the O/R mapper DLL in the references folder is the demo version (for obvious reasons).</p>
<p>Glad to hear you are having no problems otherwise! I&#8217;ll look into the unit tests to see if there&#8217;s a lingering issue. </p>
<p>Sorry that the templates are C# only &#8212; if someone wants to convert them to VB.Net I&#8217;ll add them to the distribution.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marcel</title>
		<link>http://www.sidesofmarch.com/index.php/archive/2007/06/01/wilsonorwrapper-better-stronger-maybe-faster/#comment-54</link>
		<dc:creator>Marcel</dc:creator>
		<pubDate>Tue, 05 Jun 2007 20:49:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.sidesofmarch.com/index.php/archive/2007/06/01/wilsonorwrapper-better-stronger-maybe-faster/#comment-54</guid>
		<description>Hi Brian,

Everything is ok, I could run the NUnit Tests also with my MySQL Database.
If I use the &quot;tests.nunit&quot; for starting the NUint FrontEnd I get the error I described.

If I open the NUnit Frontend and if I select the UserAppTests.dll manually
then it works perfectly!
So, don´t spend your time for checking if your framework works with MySql, it works!

I have also started to write this evening a simple Console Application (entity classes
have been generated in C#) in VB.Net , and everything I tried worked perfectly, inclusive transactions!

Best regards,
Marcel</description>
		<content:encoded><![CDATA[<p>Hi Brian,</p>
<p>Everything is ok, I could run the NUnit Tests also with my MySQL Database.<br />
If I use the &#8220;tests.nunit&#8221; for starting the NUint FrontEnd I get the error I described.</p>
<p>If I open the NUnit Frontend and if I select the UserAppTests.dll manually<br />
then it works perfectly!<br />
So, don´t spend your time for checking if your framework works with MySql, it works!</p>
<p>I have also started to write this evening a simple Console Application (entity classes<br />
have been generated in C#) in VB.Net , and everything I tried worked perfectly, inclusive transactions!</p>
<p>Best regards,<br />
Marcel</p>
]]></content:encoded>
	</item>
</channel>
</rss>

