<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>Disqus - Latest Comments for aherrick</title><link>http://disqus.com/by/aherrick/</link><description></description><atom:link href="http://disqus.com/aherrick/comments.rss" rel="self"></atom:link><language>en</language><lastBuildDate>Sun, 02 Dec 2012 01:05:37 -0000</lastBuildDate><item><title>Re: The Data-Side: The Normalizing Process</title><link>http://tekpub.com/shows/dataside/3#comment-725272645</link><description>&lt;p&gt;@Tim Hobbs I'm with you and Conery on the column names but did appreciate the back and forth. I hate the redundancy even prefixing table name on PK ID.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">aherrick</dc:creator><pubDate>Sun, 02 Dec 2012 01:05:37 -0000</pubDate></item><item><title>Re: Loading KnockoutJS View Models from ASP.Net MVC, for faster page loads</title><link>https://lostechies.com/erichexter/2012/11/29/loading-knockout-view-models-from-asp-net-mvc/#comment-722487200</link><description>&lt;p&gt;Looks good but why isn't the mapping plugin built into Knockout? This is "prefetching" right? This is a double win. You don't have that additional server hit on page load (to retrieve the data) and I don't have to re-define properties in the JS?&lt;br&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">aherrick</dc:creator><pubDate>Thu, 29 Nov 2012 07:34:30 -0000</pubDate></item><item><title>Re: MVC Storefront: Why No Source!1!1! : Rob Conery</title><link>http://blog.wekeroad.com/mvc-storefront/mvc-storefront-why-no-source-1-1/#comment-6315224</link><description>&lt;p&gt;Looking forward to reviewing the complete source.  Thanks for all the work.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">aherrick</dc:creator><pubDate>Mon, 16 Feb 2009 17:38:56 -0000</pubDate></item><item><title>Re: SubSonic 3 Alpha Updated : Rob Conery</title><link>http://blog.wekeroad.com/blog/subsonic-3-alpha-updated/#comment-4381393</link><description>&lt;p&gt;Also -- It appears there are problems recognizing the primary key.  I have the Chinook db so the primary key of the Album table according the the DB is "AlbumId"&lt;/p&gt;&lt;p&gt;However take a look at what is happening below.  When subsonic looping through the columns in the dictionary, it is not recognizing the primary key.&lt;/p&gt;&lt;p&gt;&lt;a href="http://ajondeck.net/images/subsonic_primarykeyerror.jpg" rel="nofollow noopener" target="_blank" title="http://ajondeck.net/images/subsonic_primarykeyerror.jpg"&gt;http://ajondeck.net/images/...&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Hope this is helping -- &lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">aherrick</dc:creator><pubDate>Fri, 12 Dec 2008 21:20:34 -0000</pubDate></item><item><title>Re: SubSonic 3 Alpha Updated : Rob Conery</title><link>http://blog.wekeroad.com/blog/subsonic-3-alpha-updated/#comment-4381012</link><description>&lt;p&gt;Rob- it is looking for "Artists" as a column name - see the image below.  You are correct, that column is not in the "Album" table of the Chinook DB.&lt;/p&gt;&lt;p&gt;&lt;a href="http://ajondeck.net/images/subsonic_null2.jpg" rel="nofollow noopener" target="_blank" title="http://ajondeck.net/images/subsonic_null2.jpg"&gt;http://ajondeck.net/images/...&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Also - interesting stuff on hanselminutes the other day regarding DDD&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">aherrick</dc:creator><pubDate>Fri, 12 Dec 2008 20:46:15 -0000</pubDate></item><item><title>Re: SubSonic 3 Alpha Updated : Rob Conery</title><link>http://blog.wekeroad.com/blog/subsonic-3-alpha-updated/#comment-4374782</link><description>&lt;p&gt;sorry -- i am getting a nullreference thrown on line 93.&lt;/p&gt;&lt;p&gt;here is a screen cap of the error&lt;/p&gt;&lt;p&gt;&lt;a href="http://ajondeck.net/images/subsonic_null.jpg" rel="nofollow noopener" target="_blank" title="http://ajondeck.net/images/subsonic_null.jpg"&gt;http://ajondeck.net/images/...&lt;/a&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">aherrick</dc:creator><pubDate>Fri, 12 Dec 2008 17:11:51 -0000</pubDate></item><item><title>Re: SubSonic 3 Alpha Updated : Rob Conery</title><link>http://blog.wekeroad.com/blog/subsonic-3-alpha-updated/#comment-4373385</link><description>&lt;p&gt;Line 92 Repository.cs&lt;br&gt;IColumn col = tbl.GetColumn(key);&lt;/p&gt;&lt;p&gt;col gets set to null (so null reference is thrown on line 93)&lt;/p&gt;&lt;p&gt;any thoughts? -- Thanks&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">aherrick</dc:creator><pubDate>Fri, 12 Dec 2008 16:07:18 -0000</pubDate></item><item><title>Re: SubSonic 3 Alpha Updated : Rob Conery</title><link>http://blog.wekeroad.com/blog/subsonic-3-alpha-updated/#comment-4368084</link><description>&lt;p&gt;how do i do an "add" to the database?&lt;/p&gt;&lt;p&gt;Here is what I have currently using the Chinook DB.&lt;/p&gt;&lt;p&gt;            SubSonicTestRepository&amp;lt;album&amp;gt; repo = new SubSonicTestRepository&amp;lt;album&amp;gt;();&lt;/p&gt;&lt;p&gt;            Album album = new Album();&lt;br&gt;            album.Title = "Test01";&lt;br&gt;            album.ArtistId = 1;&lt;/p&gt;&lt;p&gt;            repo.Add(album);&lt;/p&gt;&lt;p&gt;wrong idea?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">aherrick</dc:creator><pubDate>Fri, 12 Dec 2008 11:44:07 -0000</pubDate></item><item><title>Re: SubSonic 3 Alpha Updated : Rob Conery</title><link>http://blog.wekeroad.com/blog/subsonic-3-alpha-updated/#comment-4367869</link><description>&lt;p&gt;thank you yes this did the trick.  interesting because rob's image above shows a web.config sitting in his project file.  you're right it should be looking for either app/web config.  thanks again.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">aherrick</dc:creator><pubDate>Fri, 12 Dec 2008 11:31:42 -0000</pubDate></item><item><title>Re: SubSonic 3 Alpha Updated : Rob Conery</title><link>http://blog.wekeroad.com/blog/subsonic-3-alpha-updated/#comment-4364628</link><description>&lt;p&gt;I am getting this exact error.&lt;/p&gt;&lt;p&gt;added subsonic reference.  added connection string, no go.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">aherrick</dc:creator><pubDate>Fri, 12 Dec 2008 06:44:17 -0000</pubDate></item></channel></rss>