User aaronjensen - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T01:32:59Zhttp://stackoverflow.com/feeds/user/11229http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/938347/how-to-integrate-mspec-with-ms-build/940208#9402082Answer by aaronjensen for How to integrate MSpec with MS Build?aaronjensen2009-06-02T15:25:24Z2009-06-02T15:25:24Z<p>At the moment the easiest way is to just Exec it. </p>
<pre><code> <Target Name="RunSpecs">
<PropertyGroup>
<MSpecCommand>
lib\machine\specifications\Machine.Specifications.ConsoleRunner.exe $(AdditionalSettings) path\to\your\project\bin\Debug\Your.Project.Specs.dll path\to\your\other\project\bin\Debug\Your.Other.Project.dll
</MSpecCommand>
</PropertyGroup>
<Message Importance="high" Text="Running Specs with this command: $(MSpecCommand)"/>
<Exec Command="$(MSpecCommand)" />
</Target>
</code></pre>
<p>Edit: Notice Additional Settings, you can call into the target like this:</p>
<pre><code> <MSBuild Projects="yourmsbuild.msbuild" Targets="RunSpecs" Properties="AdditionalSettings=-s -t -i &quot;web&quot; --html Specs\Specs.html"/>
</code></pre>
<p>If you pass --teamcity as an argument it outputs teamcity specific log data so TeamCity will track your tests.</p>
<pre><code>Machine.Specifications
Copyright (C) 2007, 2008
Usage: mspec-runner.exe [options] <assemblies>
Options:
-i, --include Executes all specifications in contexts with these comma delimited tags. Ex. -i "foo,bar,foo_bar"
-x, --exclude Exclude specifications in contexts with these comma delimited tags. Ex. -x "foo,bar,foo_bar"
-t, --timeinfo Shows time-related information in HTML output
-s, --silent Suppress console output
--teamcity Reporting for TeamCity CI integration.
--html <PATH> Outputs an HTML file(s) to path, one-per-assembly w/ index.html (if directory, otherwise all are in
one file)
-h, --help Shows this help message
</code></pre>
http://stackoverflow.com/questions/220342/disable-layout-in-asp-net-mvc1Disable layout in ASP.NET MVC?aaronjensen2008-10-20T23:48:37Z2009-05-08T15:00:03Z
<p>In MonoRail you can just CancelLayout() to not render the layout. In ASP.NET MVC, the only way to affect the layout seems to be to pass the layout name into the View() method like View("myview", "mylayout"); only it seems that passing null or an empty string doesn't do what I'd want. </p>
<p>I ended up creating an empty layout that just rendered the content, but that seems silly.</p>
<p>"Not Render the layout" means exactly that. In the web forms view engine they call layouts "master pages". I want to render <em>just</em> my action's view and not surround it with the master page.</p>
http://stackoverflow.com/questions/74625/what-is-the-best-way-to-force-yourself-to-master-vi/74664#7466421Answer by aaronjensen for What is the best way to force yourself to master vi?aaronjensen2008-09-16T17:13:02Z2009-03-26T15:06:55Z<p>The first thing I'd do is lay a piece of paper or a book over your arrow keys and your ins/home/end/pgup/down keys. Those aren't needed in Vi. </p>
<p>Next I'd get used to hitting ctrl+[ whenever you're told to hit escape. It's much faster and you won't need to take your hands off the keyboard.</p>
<p>Then I'd watch my screencasts:</p>
<p><a href="http://www.youtube.com/watch?v=FcpQ7koECgk" rel="nofollow">http://www.youtube.com/watch?v=FcpQ7koECgk</a></p>
<p><a href="http://www.youtube.com/watch?v=c6WCm6z5msk" rel="nofollow">http://www.youtube.com/watch?v=c6WCm6z5msk</a></p>
<p><a href="http://www.youtube.com/watch?v=BPDoI7gflxM" rel="nofollow">http://www.youtube.com/watch?v=BPDoI7gflxM</a></p>
<p><a href="http://www.youtube.com/watch?v=J1_CfIb-3X4" rel="nofollow">http://www.youtube.com/watch?v=J1_CfIb-3X4</a></p>
<p>Then, just practice practice practice.</p>
<p><em>edit</em>
The reason for avoiding the arrow keys is that they slow you down. One of the largest benefits of Vim is the speed it allows you. The arrow keys also prevent you from really embracing the modal nature, which is very powerful when mastered.</p>
http://stackoverflow.com/questions/109440/best-git-repository-hosting-for-commercial-project/109458#1094586Answer by aaronjensen for Best git repository hosting for commercial project?aaronjensen2008-09-20T21:20:48Z2008-12-16T05:19:34Z<p><a href="http://assembla.com" rel="nofollow">Assembla</a> is also reasonable too. They also offer free private hosting for small teams, commercial or otherwise.</p>
<p>Edit: Assembla is no longer free for private teams, but it's still relatively inexpensive.</p>
http://stackoverflow.com/questions/169817/is-it-possible-to-query-a-tree-structure-table-in-mysql-in-a-single-query-to-any/169835#1698357Answer by aaronjensen for Is it possible to query a tree structure table in MySQL in a single query, to any depth?aaronjensen2008-10-04T05:55:05Z2008-10-04T05:55:05Z<p>Here are several resources:</p>
<p><a href="http://forums.mysql.com/read.php?10,32818,32818#msg-32818" rel="nofollow">http://forums.mysql.com/read.php?10,32818,32818#msg-32818</a></p>
<p><a href="http://dev.mysql.com/tech-resources/articles/hierarchical-data.html" rel="nofollow">http://dev.mysql.com/tech-resources/articles/hierarchical-data.html</a></p>
<p><a href="http://lists.mysql.com/mysql/201896" rel="nofollow">http://lists.mysql.com/mysql/201896</a></p>
<p>Basically, you'll need to do some sort of cursor in a sproc or query or build an adjacency table. I'd avoid recursion outside of the db, depending on how deep your tree is that could get really slow/sketchy.</p>
http://stackoverflow.com/questions/169818/object-relational-mapping-whats-the-best-way-to-implement-getters/169821#1698215Answer by aaronjensen for Object-relational mapping: What's the best way to implement getters?aaronjensen2008-10-04T05:44:42Z2008-10-04T05:44:42Z<p>Minimize the number of queries. The optimal # of queries is 0, but if you must query because it's not cached, it's 1. Querying for every property is a sure fire way to a system that will never scale, has massive contention issues, and will cause way more headaches than its worth.</p>
<p>I should mention that there is value to lazy loading (which is what you're talking about in step 1) <em>if</em> it's unlikely that you will need the data being lazily loaded. If you can though, it's best to be explicit, and fetch exactly or nearly exactly what you need. The less time you spend querying, the less time your connection is open and the more scalable your system is.</p>
http://stackoverflow.com/questions/161170/how-do-i-determine-the-file-and-line-of-a-c-method-from-a-symbols-pdb-file3How do I determine the file and line # of a C# method from a symbols (.pdb) file?aaronjensen2008-10-02T07:08:53Z2008-10-02T11:33:10Z
<p>pdb files contain symbol information for .NET assemblies. I'd like to read a pdb file in order to correlate methods with their file location. The data is contained within it but I can't seem to find a good description of how to get it out.</p>
<p>I know about <a href="http://blogs.msdn.com/jmstall/archive/2005/08/25/pdb2xml.aspx" rel="nofollow">mdbg</a>, but that is very heavy (I think/hope) for what I want.</p>
http://stackoverflow.com/questions/143855/do-you-use-code-generation-tools/143876#1438762Answer by aaronjensen for Do you use code generation tools?aaronjensen2008-09-27T15:50:44Z2008-09-27T15:50:44Z<p>We used to use CodeSmith to generate our NHibernate hbms, our entities, and a few other things. After a while we got sick of this flow so we ditched it.</p>
<p>The T4 generator is free and worth looking into for generation.</p>
<p>We still use the Castle CodeGenerator for MonoRail link generation.</p>
http://stackoverflow.com/questions/124313/isolationlevel-repeatableread-to-prevent-duplicates/124601#1246012Answer by aaronjensen for IsolationLevel.RepeatableRead to prevent duplicatesaaronjensen2008-09-23T23:50:14Z2008-09-23T23:50:14Z<p>I believe you're actually wanting Serializable isolation level. The problem is that two threads can get past the HasInsurancePolicyCheck (though I have no idea what InsurancePolicyDB.Insert would do or why it would return 0)</p>
<p>You have many other options for this as well. One is using a message queue and processing these requests serially yourself. Another is to use <a href="http://msdn.microsoft.com/en-us/library/ms189823.aspx" rel="nofollow">sp_getapplock</a> and lock on some key unique to that package. That way you don't lock any more rows or tables than you must.</p>
http://stackoverflow.com/questions/121662/implementing-user-controlled-style-changes-in-asp-net/121692#1216922Answer by aaronjensen for Implementing User-Controlled Style Changes in ASP.NETaaronjensen2008-09-23T15:22:42Z2008-09-23T15:22:42Z<p>What exactly will be changing? Depending on what's changing you may be able to overlay a transparent png on top of an html background color. Just change the background color and the logo color will change. Of course this limits what you can change, but you'd be surprised how much you can get away with.</p>
<p>And yes, the alternative is to paint the image on the web server. <a href="http://www.hanselman.com/blog/ASPNETFuturesGeneratingDynamicImagesWithHttpHandlersGetsEasier.aspx" rel="nofollow">Here's a post on it from hanselman</a>.</p>
http://stackoverflow.com/questions/121373/built-in-localization-tools-in-vs2008/121566#1215663Answer by aaronjensen for Built-in localization tools in VS2008aaronjensen2008-09-23T14:59:26Z2008-09-23T14:59:26Z<p>Who will be localizing it? Most external localization companies have utilities for this. If its yourself or your team the simplest thing is probably to use Visual Studio or something like what's mentioned here to convert it to and from a word doc:</p>
<p><a href="http://blog.vermorel.com/?p=73" rel="nofollow">http://blog.vermorel.com/?p=73</a></p>
http://stackoverflow.com/questions/117131/avoid-deletions-of-files-using-tortoisesvn/117152#1171522Answer by aaronjensen for Avoid Deletions of Files using TortoiseSVNaaronjensen2008-09-22T19:55:54Z2008-09-22T19:55:54Z<p>One of the beauties of source control is that it doesn't matter if someone deletes a file. If they delete a file and check it in and it should not have been deleted, just revert their revision. Simple as that.</p>
http://stackoverflow.com/questions/109976/why-should-i-use-rspec-or-shoulda-with-rails/109996#10999610Answer by aaronjensen for Why should I use RSpec or shoulda with Rails?aaronjensen2008-09-21T01:57:42Z2008-09-21T01:57:42Z<p>RSpec and similar framewroks are tooling designed to aid in Behavior Driven Development. They're not just a prettier way to write tests, though they do help with that. </p>
<p>There is plenty of information on BDD here: <a href="http://behaviour-driven.org/" rel="nofollow">http://behaviour-driven.org/</a>
And wikipedia: <a href="http://en.wikipedia.org/wiki/Behavior_Driven_Development" rel="nofollow">http://en.wikipedia.org/wiki/Behavior_Driven_Development</a></p>
<p>There are too many benefits to list here, so I'd recommend browsing that site a little.</p>
http://stackoverflow.com/questions/109141/how-do-you-manage-a-large-product-backlog/109445#1094456Answer by aaronjensen for How do you manage a large product backlog?aaronjensen2008-09-20T21:18:22Z2008-09-21T01:53:27Z<p>Managing a large backlog in an aggressive manner is almost always wasteful. By the time you get to the middle of a prioritized pile things have more often than not changed. I'd recommend adopting something like what Corey Ladas calls a priority filter:</p>
<p><a href="http://leansoftwareengineering.com/2008/08/19/priority-filter/" rel="nofollow">http://leansoftwareengineering.com/2008/08/19/priority-filter/</a></p>
<p>Essentially, you have a few buckets of increasing size and decreasing priority. You allow stakeholders to fill them, but force them to ignore the rest of the stories until there are openings in the buckets. Very simple but very effective.</p>
<p><strong>Edit:</strong> Allan asked what to do if tasks are of different sizes. Basically, a big part of making this work is right-sizing your tasks. We only apply this prioritization to user stories. User stories are typically significantly smaller than "create a community site". I would consider the community site bit an epic or even a project. It would need to be broken down into significantly smaller bits in order to be prioritized.</p>
<p>That said, it can still be challenging to make stories similarly sized. Sometimes you just can't, so you communicate that during your planning decisions. </p>
<p>With regards to moving wibbles two pixels, many of these things that are easy can be done for "free". You just have to be careful to balance these and only do them if they're really close to free and they're actually somewhat important. </p>
<p>We treat bugs similarly. Bugs get one of three categories, Now, Soon or Eventually. We fix Now and Soon bugs as quickly as we can with the only difference being when we publish the fixes. Eventually bugs don't get fix unless devs get bored and have nothing to do or they somehow become higher priority.</p>
http://stackoverflow.com/questions/109343/batching-in-rest/109479#1094790Answer by aaronjensen for Batching in RESTaaronjensen2008-09-20T21:27:05Z2008-09-20T21:27:05Z<p>Of course there is a way but it would require server-side support. There is no magical one size fits all methodology that I know of.</p>
http://stackoverflow.com/questions/109432/what-not-to-test-when-it-comes-to-unit-testing/109474#1094748Answer by aaronjensen for What not to test when it comes to Unit Testing?aaronjensen2008-09-20T21:25:16Z2008-09-20T21:25:16Z<p>achieving 100% code coverage is almost always wasteful. There are many resources on this.</p>
<p>Nothing is impossible to unit test but there are always diminishing returns. It may not be worth it to unit test things that are painful to unit test.</p>
http://stackoverflow.com/questions/109462/how-to-justify-a-workstation-upgrade/109467#1094679Answer by aaronjensen for How to justify a workstation upgradeaaronjensen2008-09-20T21:23:10Z2008-09-20T21:23:10Z<p>Quantify the pain. Explain that the build is taking 10 minutes and with a new machine it would take 5. Explain that you build many many times a day and that the machine would more than make up for it in that time.</p>
<p>Also explain that the frustration from frequent pausing and disk thrashing makes you less productive than you would be if you weren't constantly fighting your tools. </p>
<p>Tell them machines are cheap now and you'll do your best to research the most cost effective upgrade.</p>
http://stackoverflow.com/questions/108481/find-linksys-router-ip-address/108486#1084860Answer by aaronjensen for find linksys router ip addressaaronjensen2008-09-20T15:29:24Z2008-09-20T15:29:24Z<p>Run cmd.</p>
<p>From there, run ipconfig.</p>
<p>Look for your gateway address. It's likely something like 192.168.0.1.</p>
<p>That's your router's IP.</p>
<p>Alternatively, reset it w/ the tiny reset switch and it will be 192.168.0.1</p>
http://stackoverflow.com/questions/107383/what-is-the-best-windows-program-launcher/107445#1074452Answer by aaronjensen for What is the best (Windows) program launcher?aaronjensen2008-09-20T06:51:49Z2008-09-20T06:51:49Z<p>Windows start menu is slow as all heck. I want 0 delay between when I type and when I see my result. Launchy is very fast, and is very smart about matching. </p>
<p>It essentially puts wildcards between every letter, so you can just type bits and pieces of what you want to match. So "psh" would match PowerSHell</p>
<p>It also remembers your selections, so you can type "a", select anything from the dropdown that contains an "a", and next time you type "a" it will remember your selection. Quite slick.</p>
http://stackoverflow.com/questions/105901/implementing-intellisense-like-behavior-in-custom-editors-for-domain-specific-lan/105951#1059510Answer by aaronjensen for Implementing IntelliSense-like behavior in custom editors for domain-specific languagesaaronjensen2008-09-19T21:51:52Z2008-09-19T21:51:52Z<p>Ayende did a few things in this area:</p>
<p><a href="http://ayende.com/Blog/archive/2008/08/21/Basic-intellisense.aspx" rel="nofollow">http://ayende.com/Blog/archive/2008/08/21/Basic-intellisense.aspx</a>
<a href="http://ayende.com/Blog/archive/2008/08/26/Primitive-Contextual-Intellisense.aspx" rel="nofollow">http://ayende.com/Blog/archive/2008/08/26/Primitive-Contextual-Intellisense.aspx</a></p>
http://stackoverflow.com/questions/102720/css-organization-and-colours/102842#1028420Answer by aaronjensen for css organization and coloursaaronjensen2008-09-19T15:27:17Z2008-09-19T15:27:17Z<p>CSS is not your answer. You want to look into an abstraction on top of CSS like <a href="http://haml.hamptoncatlin.com/docs/rdoc/classes/Sass.html" rel="nofollow">SASS</a>. This will allow you to define constants and generally clean up your css. </p>
<p>Here is a list of <a href="http://speckyboy.com/2008/03/28/top-12-css-frameworks-and-how-to-understand-them/" rel="nofollow">CSS Frameworks</a>.</p>
http://stackoverflow.com/questions/102474/is-there-a-means-to-produce-a-changelog-in-svn/102530#1025303Answer by aaronjensen for Is there a means to produce a changelog in SVNaaronjensen2008-09-19T14:58:34Z2008-09-19T14:58:34Z<p>I would just do this in the individual commit message. <a href="http://tortoisesvn.tigris.org/" rel="nofollow">TortoiseSVN</a> has filename autocompletion so that greatly aids in this.</p>
<p>Another thing you could do is svn st before you commit and copy/paste the filenames into your commit message.</p>
<p>Oh, and be sure to strongly question the value of this. I know some OSS projects (linux?) require this sort of fidelity, but for many projects this is just noise. Diff can tell you much more than this, and more accurately.</p>
<p>One other thing you may want to consider is using <a href="http://git.or.cz/" rel="nofollow">Git</a>. Git allows you to commit locally, in smaller steps. You then push to the master server all of your commits individually or squashed into a single commit w/ all the commit messages in a single message. That was a way simplified explanation, but it probably is worth checking out.</p>
http://stackoverflow.com/questions/97114/is-conditional-compilation-a-valid-mock-stub-strategy-for-unit-testing/102440#1024401Answer by aaronjensen for Is conditional compilation a valid mock/stub strategy for unit testing?aaronjensen2008-09-19T14:48:57Z2008-09-19T14:48:57Z<p>I thought of another reason this was terrible:</p>
<p>Many times you mock/stub something, you want its methods to return different results depending on what you're testing. This either precludes that or makes it awkward as all heck.</p>
http://stackoverflow.com/questions/97833/windows-server-2003-nlb-drainstop-notification-on-stop1Windows Server 2003 NLB drainstop notification on stopaaronjensen2008-09-18T22:58:34Z2008-09-19T03:24:00Z
<p>How would I drainstop one of the nodes in a MS NLB via command line and then get notified of its completion? </p>
<p>If there's no way to callback, is there an easy way to poll?</p>
http://stackoverflow.com/questions/98895/dllregisterserver-entry-point-was-not-found/98955#989551Answer by aaronjensen for DllRegisterServer entry point was not foundaaronjensen2008-09-19T02:22:00Z2008-09-19T02:22:00Z<p>You don't need to register that. Try this as well:
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis -s /w3svc/1/root</p>
<p>If IIS is still giving you issues, check your event log and google the error there. You'll get hits.</p>
http://stackoverflow.com/questions/98903/what-can-a-coder-at-heart-do-to-survive-earning-a-computer-science-degree/98917#989170Answer by aaronjensen for What can a coder-at-heart do to survive earning a Computer Science degree?aaronjensen2008-09-19T02:15:01Z2008-09-19T02:15:01Z<p>I've got my CS degree. The courses were boring. I had a real coding job while in school, so that helped.</p>
<p>Another thing to perhaps consider is the simple fact that CS degrees don't really mean much. 4 years SE career experience means a lot more in this market than a CS degree. I'm not trying to tell you to drop out... but I know plenty of rock star devs that never even started...</p>
http://stackoverflow.com/questions/98830/modularity-of-classes/98904#989042Answer by aaronjensen for Modularity of Classesaaronjensen2008-09-19T02:13:04Z2008-09-19T02:13:04Z<p>Try TDD. Be sure to do the Refactor step, this is often where you start to break things up. Also, focus on Separation of Concerns. If a class is doing too much, break it up. And yeah, DI/IoC is very important to make these things work.</p>
http://stackoverflow.com/questions/98801/should-i-inject-things-into-my-entities/98893#988933Answer by aaronjensen for Should I inject things into my entities?aaronjensen2008-09-19T02:11:03Z2008-09-19T02:11:03Z<p>I'd generally recommend against it. </p>
<p>It generally keeps your domain cleaner when your entities are given the things they need to do to perform their duties. When they have to look things up they are often taking shortcuts, shortcuts that can be avoided by doing more analysis into the domain and the relationships between members of the domain.</p>
<p>Application and Domain services are generally a better place to allow injection in my opinion. They can also be responsible for creating/persisting entities.</p>
http://stackoverflow.com/questions/97850/version-control-on-a-2gb-usb-drive/97887#978877Answer by aaronjensen for Version control on a 2GB USB driveaaronjensen2008-09-18T23:10:40Z2008-09-18T23:23:37Z<p>I'd use <a href="http://git.or.cz" rel="nofollow">git</a>. Git repos are really small and don't require a daemon. You can probably install <a href="http://www.cygwin.com/" rel="nofollow">cygwin</a> or <a href="http://code.google.com/p/msysgit/" rel="nofollow">msysgit</a> on your flashdrive.</p>
<p>Edit: <a href="http://www.dam.brown.edu/people/sezer/software/cygwin/" rel="nofollow">here are some instructions for installing cygwin on a flash drive</a></p>
http://stackoverflow.com/questions/97528/custom-url-extensions-routing-without-iis-access/97568#975680Answer by aaronjensen for Custom URL Extensions/Routing Without IIS Accessaaronjensen2008-09-18T22:15:33Z2008-09-18T22:15:33Z<p>Never tried it, but would URL Rewriting work?</p>
<p><a href="http://www.aspnettutorials.com/tutorials/network/web-URL-aspnet2-csharp.aspx" rel="nofollow">http://www.aspnettutorials.com/tutorials/network/web-URL-aspnet2-csharp.aspx</a></p>
http://stackoverflow.com/questions/107383/what-is-the-best-windows-program-launcher/107445#107445Comment by aaronjensen on What is the best (Windows) program launcher?aaronjensen2008-10-17T21:42:01Z2008-10-17T21:42:01Zheh, yes I'm sure. Your definition of instant is likely not the same as mine. If you see "Searching..." EVER (unless there are no results) it's slow as all heck.http://stackoverflow.com/questions/52950/how-to-make-git-ignore-changes-in-case/53116#53116Comment by aaronjensen on How to make git ignore changes in case?aaronjensen2008-10-10T22:33:21Z2008-10-10T22:33:21Zgit config core.ignorecase true
or
git config --global core.ignorecase true
to apply globally.http://stackoverflow.com/questions/80892/get-methods-one-vs-many/80920#80920Comment by aaronjensen on Get Methods: One vs Manyaaronjensen2008-10-02T16:22:53Z2008-10-02T16:22:53ZYour definition of maintainability is not the same as mine.http://stackoverflow.com/questions/161170/how-do-i-determine-the-file-and-line-of-a-c-method-from-a-symbols-pdb-fileComment by aaronjensen on How do I determine the file and line # of a C# method from a symbols (.pdb) file?aaronjensen2008-10-02T15:14:31Z2008-10-02T15:14:31ZYes, but I need this without having to call into the method and especially without it throwing an exception I'm catching.http://stackoverflow.com/questions/143855/do-you-use-code-generation-tools/143876#143876Comment by aaronjensen on Do you use code generation tools?aaronjensen2008-09-27T17:01:54Z2008-09-27T17:01:54ZWell the flow started out w/ a UML tool. Having to go into the UML tool to add a new entity was a pain. It was much more natural to do it from the IDE.http://stackoverflow.com/questions/97114/is-conditional-compilation-a-valid-mock-stub-strategy-for-unit-testing/102440#102440Comment by aaronjensen on Is conditional compilation a valid mock/stub strategy for unit testing?aaronjensen2008-09-22T19:50:59Z2008-09-22T19:50:59ZHave you used a mocking framework? You don't have additional bodies for testing. Furthermore, I'm talking about situations where you want, say, 7 different behaviors depending on your context. It's just a horrendous idea. Don't do it.http://stackoverflow.com/questions/98903/what-can-a-coder-at-heart-do-to-survive-earning-a-computer-science-degree/98917#98917Comment by aaronjensen on What can a coder-at-heart do to survive earning a Computer Science degree?aaronjensen2008-09-22T01:20:04Z2008-09-22T01:20:04ZI meant never even started college... they went straight to industry.http://stackoverflow.com/questions/97532/what-are-the-advantages-and-disadvantages-of-dtos-from-a-website-performance-perComment by aaronjensen on What are the advantages and disadvantages of DTO's from a website performance perspective?aaronjensen2008-09-18T22:20:46Z2008-09-18T22:20:46ZData Transfer Objecthttp://stackoverflow.com/questions/90246/how-would-i-store-a-date-that-can-be-partial-i-e-just-the-year-maybe-the-month/90273#90273Comment by aaronjensen on How would I store a date that can be partial (i.e. just the year, maybe the month too) and output it later with the same specifity?aaronjensen2008-09-18T05:38:49Z2008-09-18T05:38:49ZI feel this unnecessarily complicates things. Keep it simple.http://stackoverflow.com/questions/90246/how-would-i-store-a-date-that-can-be-partial-i-e-just-the-year-maybe-the-month/90250#90250Comment by aaronjensen on How would I store a date that can be partial (i.e. just the year, maybe the month too) and output it later with the same specifity?aaronjensen2008-09-18T05:35:20Z2008-09-18T05:35:20ZAh, in that case I may just store it as multiple NULLABLE columns, one for year, month, day, then you'd have a FlexibleDate value object that'd interpret them.