User JarrettV - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T06:37:32Zhttp://stackoverflow.com/feeds/user/16340http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1454987/how-to-call-a-webservice-from-dataflow-in-ssis0How to call a webservice from dataflow in SSIS?JarrettV2009-09-21T15:04:17Z2009-10-23T23:00:01Z
<p>I need to call a webservice to validate some data. There is web service task in the control flow but I need to validate during the data flow. Also, the web service supports single or batch validations so it would be nice to batch a 100 items for validation at a time.</p>
<p>Is it best to just code all this up in a script component?</p>
http://stackoverflow.com/questions/1351818/web-help-for-a-asp-net-3-5-web-application/1358690#13586900Answer by JarrettV for Web Help for a ASP.net 3.5 web applicationJarrettV2009-08-31T18:16:12Z2009-08-31T18:16:12Z<p>Also check out <a href="http://docu.jagregory.com/" rel="nofollow">Docu</a></p>
<p>A documentation generator for .Net that isn't complicated, awkward, or difficult to use. Given an assembly and the XML that's generated by Visual Studio, docu can produce an entire website of documentation with a single command.</p>
http://stackoverflow.com/questions/214500/which-linq-syntax-do-you-prefer-fluent-or-query-expression20Which LINQ syntax do you prefer? Fluent or Query ExpressionJarrettV2008-10-18T03:36:49Z2009-08-26T17:14:23Z
<p>LINQ is one of the greatest improvements to .NET since generics and it saves me tons of time, and lines of code. However, the fluent syntax seems to come much more natural to me than the query expression syntax.</p>
<p><img src="http://jvance.com/media/2008/10/18/LinqSyntax16.media" alt="LINQ Syntax Choice" /></p>
<p>Which do you prefer and if you write standards for your company, do you enforce one over the other?</p>
http://stackoverflow.com/questions/725563/asp-net-mvc-web-config-multiple-issue/725593#7255931Answer by JarrettV for ASP.NET MVC web.config (multiple) issueJarrettV2009-04-07T13:04:02Z2009-04-07T13:04:02Z<p>Try removing the section before the second definition all within the Subproject web.config.</p>
<p>See: <a href="http://forums.iis.net/t/1155685.aspx" rel="nofollow">http://forums.iis.net/t/1155685.aspx</a></p>
<blockquote>
<p>You can remove predefined section or
section group by using
element in the sub sites' web config
file. It looks like this:</p>
</blockquote>
<pre><code><configuration>
<configSections>
<remove name="system.web.extensions "/>
<!-- Add your new section or section group -->
</configSections>
</configuration>
</code></pre>
<p>For more information,</p>
<blockquote>
<p>please refer to: <remove> Element for
<configSections>
<a href="http://msdn.microsoft.com/en-us/library/aa309404%28VS.71%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa309404(VS.71).aspx</a></p>
</blockquote>
http://stackoverflow.com/questions/687744/how-do-you-insert-a-named-route-into-the-routecollection-object0How do you insert a named route into the RouteCollection object?JarrettV2009-03-26T22:03:33Z2009-03-26T22:03:33Z
<p>I exclusively use named routes (as a best practice) when using ASP.NET Routing. The RouteCollection object has an <strong>Add</strong> function that allows you to easily add a named route to the collection. However, if you need to insert a named route (due to routing order) the <strong>Insert</strong> function does not have a name parameter and therefore it doesn't seem possible to insert a named route.</p>
<p>How do you <strong>insert</strong> a named route?</p>
http://stackoverflow.com/questions/608149/n2-cms-rating-user-control/608229#6082290Answer by JarrettV for N2 CMS rating user controlJarrettV2009-03-03T21:17:21Z2009-03-03T21:17:21Z<p>Check the <a href="http://blogsvc.codeplex.com/SourceControl/changeset/view/31927#398218" rel="nofollow">source code</a> of BlogSvc (soon to be called AtomServer)</p>
<p>Source/WebCore/Plugins/Rater/RaterService.cs</p>
<p>Here is a snippet:</p>
<pre><code>public RaterModel Rate(Id entryId, float rating, User user, string ip)
{
LogService.Info("RateEntry: {0}, {1}, {2}", entryId, rating, ip);
if (!AuthorizeService.IsAuthorized(user, entryId, AuthAction.RateEntryOrMedia))
throw new UserNotAuthorizedException(user.Name, AuthAction.RateEntryOrMedia.ToString());
if (rating < 1 || rating > 5) throw new ArgumentOutOfRangeException("Rating value must be 1 thru 5.");
AtomEntry entry = AtomEntryRepository.GetEntry(entryId);
if (entry.Raters.Contains(ip)) throw new UserAlreadyRatedEntryException(ip, entry.Id.ToString());
entry.RatingCount++;
entry.RatingSum += (int)Math.Round(rating); //temporarily force int ratings
entry.Edited = DateTimeOffset.UtcNow;
List<string> raters = entry.Raters.ToList();
raters.Add(ip);
entry.Raters = raters;
entry = AtomEntryRepository.UpdateEntry(entry);
return new RaterModel()
{
PostHref = RouteService.RouteUrl("RaterRateEntry", entryId),
Rating = entry.Rating,
CanRate = false,
RatingCount = entry.RatingCount
};
}
</code></pre>
http://stackoverflow.com/questions/332603/mvc-and-openid-redirection-problems/573944#5739440Answer by JarrettV for MVC and OpenID Redirection ProblemsJarrettV2009-02-21T23:44:18Z2009-02-21T23:44:18Z<p>I use the classic ReturnUrl querystring parameter to get the user back to the right page. Unfortunately, the RedirectFromLoginPage does not work well after OpenId Authentication so you must do it manually. Note, this is done as an authentication module rather than deeper in on the controller. It feels cleaner this way.</p>
<pre><code> FormsAuthentication.SetAuthCookie(openid.Response.ClaimedIdentifier, false);
//FormsAuthentication.RedirectFromLoginPage(openid.Response.ClaimedIdentifier, false); <-- doesn't work
//send back to the right page
string returnUrl = ctx.Request.QueryString["ReturnUrl"];
if (!string.IsNullOrEmpty(returnUrl))
{
returnUrl = HttpUtility.UrlDecode(returnUrl);
ctx.Response.Redirect(returnUrl);
}
</code></pre>
<p>If you'd like to see the entire implementation of the OpenIdAuthenticationModule, check out the <a href="http://www.codeplex.com/blogsvc/SourceControl/changeset/view/31628#392049" rel="nofollow">source code on codeplex</a>.</p>
http://stackoverflow.com/questions/259382/model-view-confusion/563786#5637861Answer by JarrettV for Model-View-ConfusionJarrettV2009-02-19T02:58:48Z2009-02-19T02:58:48Z<p>The best information I've found on doing widgets in ASP.NET MVC is on Steve Sanderson's blog. He explains his concept of partial requests which is a different technique than sub-controllers.</p>
<p><a href="http://blog.codeville.net/2008/10/14/partial-requests-in-aspnet-mvc/" rel="nofollow">http://blog.codeville.net/2008/10/14/partial-requests-in-aspnet-mvc/</a></p>
<blockquote>
<p><strong>Partial Requests are easy</strong> You’ve heard of partial views, so how about
partial requests? Within any MVC
request, you can set up a collection
of internal partial requests, each of
which can set up its own internal
partial requests and so on. Each
partial request renders a plain old
action method in any of your plain
regular controllers, and each can
produce an independent widget. I’m
calling them partial “requests” rather
than “controllers” because they run a
proper MVC request-handling pipeline
that’s compatible with your routing
system and your controller factory.
Still, as with subcontrollers, all the
control remains in controllers, and
the view can be ignorant.</p>
</blockquote>
http://stackoverflow.com/questions/383192/compile-views-in-asp-net-mvc/542944#54294427Answer by JarrettV for Compile Views in ASP.NET MVCJarrettV2009-02-12T19:52:21Z2009-02-12T19:58:03Z<p><em>From the readme word doc for RC1 (not indexed by google)</em></p>
<p><strong>ASP.NET Compiler Post-Build Step</strong></p>
<p>Currently, errors within a view file are not detected until run time. To let you detect these errors at compile time, ASP.NET MVC projects now include an MvcBuildViews property, which is disabled by default. To enable this property, open the project file and set the MvcBuildViews property to true, as shown in the following example: </p>
<pre><code><Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<MvcBuildViews>true</MvcBuildViews>
</PropertyGroup>
</code></pre>
<p><strong>Note</strong> Enabling this feature adds some overhead to the build time.</p>
<p>You can update projects that were created with previous releases of MVC to include build-time validation of views by performing the following steps:</p>
<ol>
<li>Open the project file in a text editor.</li>
<li>Add the following element under the top-most <PropertyGroup> element:
<strong><MvcBuildViews>true</MvcBuildViews></strong></li>
<li><p>At the end of the project file, uncomment the <strong><Target Name="AfterBuild"></strong> element and modify it to match the following</p>
<p><Target Name="AfterBuild" Condition="'$(MvcBuildViews)'=='true'">
<AspNetCompiler VirtualPath="temp" PhysicalPath="$(ProjectDir)..\$(ProjectName)" />
</Target></p></li>
</ol>
http://stackoverflow.com/questions/214615/will-google-android-ever-support-net21Will Google Android ever support .NET?JarrettV2008-10-18T05:14:45Z2009-02-06T06:03:10Z
<p>Now that the G1 with Google's Android OS is now available (soon), will the android platform ever support .Net?</p>
http://stackoverflow.com/questions/272806/intercepting-requests-in-the-asp-net-mvc-framework/272899#2728994Answer by JarrettV for Intercepting requests in the ASP.NET MVC Framework...JarrettV2008-11-07T17:39:38Z2008-11-07T17:39:38Z<p><a href="http://www.google.com/search?q=asp.net+mvc+action+filters" rel="nofollow">Use ASP.NET MVC Action Filters</a></p>
http://stackoverflow.com/questions/272862/how-to-keep-domain-name-in-address-bar/272882#2728822Answer by JarrettV for How to keep domain name in address barJarrettV2008-11-07T17:34:26Z2008-11-07T17:34:26Z<p>You can use AJAX to change the content of the page without changing the address.</p>
<p>However, if the data is located on another domain then the address should change to point to that domain. Also, it is recommended that the address can be bookmarked so user's can easily return to the data. The address should reflect the content of the resource it points to.</p>
http://stackoverflow.com/questions/203421/how-do-you-auto-deploy-a-website-during-a-release-build3How do you auto-deploy a website during a release build?JarrettV2008-10-15T01:19:15Z2008-11-06T16:21:05Z
<p>I'd like to upload (via ftp) a website when doing a release build in visual studio 2008. I don't want any source code files to be uploaded and it would be nice to configure which folders should get uploaded. I'm using either ASP.NET Web Applications or MVC. How do I configure VS.NET to automatically upload (and overwrite) the last deployed website?</p>
http://stackoverflow.com/questions/247433/asp-net-forms-authentication-logging-off/247529#2475290Answer by JarrettV for ASP.NET Forms Authentication - Logging offJarrettV2008-10-29T16:45:57Z2008-10-29T16:45:57Z<p>The preferred authentication for an intranet application is to use windows authentication instead of forms authentication.</p>
<p>In which case you can just log off of windows and login as "someone" else.</p>
http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/245855#245855300Answer by JarrettV for Worst UI You've Ever UsedJarrettV2008-10-29T05:09:36Z2008-10-29T05:09:36Z<p>Generally all driver/hardware UIs, <strong>especially software that comes with motherboards</strong>, but also seen with sound cards and input devices. </p>
<p><img src="http://www.hardocp.com/images/articles/1088408604GrlXbEBu0B_1_17_l.gif" alt="alt text" /></p>
http://stackoverflow.com/questions/210544/why-is-asp-net-mvc-beta-crashing-my-iis7-1Why is Asp.net MVC Beta crashing my IIS7? [closed]JarrettV2008-10-16T22:38:38Z2008-10-18T22:01:51Z
<p>With the new beta release of the MVC framework I updated an existing application to compile and run. After fixing compile errors things run smoothly from within Visual Studio. However, when I deploy to IIS7, I am getting a crash.</p>
<p><img src="http://jvance.com/media/2008/10/16/AspNetMvcBetaIis7Crash_thumb5.media" alt="IIS7 Crash" /></p>
<p>I’ve tried cleaning out all the applications in my IIS and also restarted the AppDomains, sites, servers. I’ve also tried rebooting. Anyone have any idea’s? Does the beta run on your IIS7 in Vista?</p>
http://stackoverflow.com/questions/210544/why-is-asp-net-mvc-beta-crashing-my-iis7/213769#2137690Answer by JarrettV for Why is Asp.net MVC Beta crashing my IIS7?JarrettV2008-10-17T20:39:54Z2008-10-18T22:01:51Z<p>I did try it on a separate machine and it worked under IIS7 without crashing. Today, I noticed that Paint.Net crashed and it said there was a <strong>data execution prevention</strong> error. I went into my BIOS and <strong>disabled DEP</strong> and now things are working in both Paint.net and IIS7 with MVC beta.</p>
<p>I was not able to verify what was causing this problem. <strong>However, after some windows updates and some more reboots, things are working fine.</strong></p>
http://stackoverflow.com/questions/208468/issues-during-asp-net-mvc-upgrade-from-preview-5-to-beta/210439#2104394Answer by JarrettV for Issues During ASP.NET MVC Upgrade from Preview 5 to Beta?JarrettV2008-10-16T21:52:25Z2008-10-18T21:57:15Z<p>I experienced the same problem as <a href="http://stackoverflow.com/users/1228/will">Will</a> and had to do similar things as him, including copying the dlls to the bin folder. </p>
<p>Now things are working in the internal vs.net server but are causing IIS7 to crash.</p>
<p>Ok, it turns out one of the major problems is that I missed the step to <strong>update the compilation assemblies in the web.config</strong>:</p>
<pre><code><add assembly="System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
</code></pre>
http://stackoverflow.com/questions/213411/how-to-export-a-flat-file-with-different-rows-using-ssis/214579#2145790Answer by JarrettV for How to export a flat file with different rows using SSIS?JarrettV2008-10-18T04:38:11Z2008-10-18T04:38:11Z<p>Your gut feeling on doing this using a Script Destination component is correct. Unfortunately, this scenario doesn't jive with SSIS well. I don't consider this a beginner package. If you must use SSIS then I'd start by inner joining all the data so there is one row for each InvoiceRow, containing the data needed from all three tables.</p>
<p>CustomerCols, InvoiceCols, RowCols</p>
<p>Then, in the script destination component you'll need to keep track of the customer and invoice values, as they change you'll need to write extra rows to the output.</p>
<p>See <a href="http://msdn.microsoft.com/en-us/library/ms135939.aspx" rel="nofollow">Creating a Destination with the Script Component</a> for more information on script destination.</p>
<p>My experience shows that script destinations can have good performance.</p>
http://stackoverflow.com/questions/214537/asp-net-mvc-and-jqueryui-dilemma/214560#2145603Answer by JarrettV for ASP.net MVC and jQueryUI dilemmaJarrettV2008-10-18T04:16:44Z2008-10-18T04:16:44Z<p>Unless all your views are at the same level, you'll need to either use</p>
<ul>
<li>Use an absolute path such as /Scripts/jquery-1.2.6.js</li>
<li>Or even better, Resolve a virtual path such as <%= Url.Content("~/Scripts/jquery-1.2.6.js") %></li>
</ul>
<p><img src="http://jvance.com/media/2008/10/18/UrlContent5.media" alt="Url.Content()" /></p>
http://stackoverflow.com/questions/213259/manipulating-the-http-header-in-wcf-before-http-authentication-in-httpbinding/214555#214555-1Answer by JarrettV for Manipulating the HTTP header in WCF before HTTP authentication in HttpBindingJarrettV2008-10-18T04:09:55Z2008-10-18T04:09:55Z<p>Take a look at <a href="http://www.restchess.com/" rel="nofollow">REST Chess source code</a>.</p>
http://stackoverflow.com/questions/209795/wcf-webhttp-mixed-authentication-basic-and-anonymous/214550#2145500Answer by JarrettV for WCF WebHttp Mixed Authentication (Basic AND Anonymous)JarrettV2008-10-18T04:04:55Z2008-10-18T04:04:55Z<p>I've done research on this in the past and found that it is not possible through configuration unless you create 2 separate endpoints (which is not what you want). It just simply isn't supported out of the box by WCF.</p>
<p>However, WCF is extremely customizable and you could likely do this by writing a custom channel/binding that will do what you want. I recommend you take a look at the <strong><a href="http://www.restchess.com/" rel="nofollow">REST Chess</a> source code</strong>. It should get you started.</p>
http://stackoverflow.com/questions/205582/how-do-you-use-querystrings-with-asp-net-routing1How do you use querystrings with ASP.NET routing?JarrettV2008-10-15T17:10:42Z2008-10-16T08:11:27Z
<p>The new ASP.NET routing is great for simple path style URL's but if you want to use a url such as:</p>
<p><a href="http://example.com/items/search.xhtml?term=Text+to+find&page=2" rel="nofollow">http://example.com/items/search.xhtml?term=Text+to+find&page=2</a></p>
<p>Do you have to use a catch all parameter with a validation?</p>
http://stackoverflow.com/questions/203421/how-do-you-auto-deploy-a-website-during-a-release-build/207033#2070331Answer by JarrettV for How do you auto-deploy a website during a release build?JarrettV2008-10-16T00:42:42Z2008-10-16T00:42:42Z<p>Well, it turns out the simplest way to do this is to use the "Publish" functionality built into VS.NET.<br />
Right click on the project and click Publish. It will build and deploy the project for you. It obviously isn't as customizable as using MSBuild or Nant but it does have some options:
<img src="http://jvance.com/media/PublishWeb4.png" alt="Publish Screen" /></p>
<p>I've used this feature before but I somehow thought it was only available for "Web Site" projects.</p>
http://stackoverflow.com/questions/206425/has-a-system-that-incorporated-a-rule-engine-ever-been-truly-successful/206555#2065553Answer by JarrettV for Has a system that incorporated a rule engine ever been TRULY successful?JarrettV2008-10-15T21:20:09Z2008-10-15T21:20:09Z<p>Yes, Microsoft has a Business Rule Engine (BRE) in BizTalk that has been used successfully for years. I've heard that they've had clients buy BizTalk (very expensive) just for the BRE.</p>
<p>In my experience, the practicality of having a business user update the rules is slim to none. It usually takes a technical person to work the business rules editor.</p>
http://stackoverflow.com/questions/205499/when-do-you-prefer-to-code/205616#2056161Answer by JarrettV for When do you prefer to code?JarrettV2008-10-15T17:19:21Z2008-10-15T17:19:21Z<p>I prefer to code while feeding my never-ending appetite for political news from MSNBC, CNN, and Comedy Central. I'm not extremely productive during the Daily Show and the Colbert Report, but at least I'm laughing.</p>
http://stackoverflow.com/questions/202912/hierarchical-data-in-linq-options-and-performance/203159#2031590Answer by JarrettV for Hierarchical data in Linq - options and performanceJarrettV2008-10-14T22:59:53Z2008-10-15T01:03:23Z<p>This extension method could potentially be modified to use IQueryable. I've used it succesfully in the past on a collection of objects. It may work for your scenario.</p>
<pre><code>public static IEnumerable<T> ByHierarchy<T>(
this IEnumerable<T> source, Func<T, bool> startWith, Func<T, T, bool> connectBy)
{
if (source == null)
throw new ArgumentNullException("source");
if (startWith == null)
throw new ArgumentNullException("startWith");
if (connectBy == null)
throw new ArgumentNullException("connectBy");
foreach (T root in source.Where(startWith))
{
yield return root;
foreach (T child in source.ByHierarchy(c => connectBy(root, c), connectBy))
{
yield return child;
}
}
}
</code></pre>
<p>Here is how I called it:</p>
<pre><code>comments.ByHierarchy(comment => comment.ParentNum == parentNum,
(parent, child) => child.ParentNum == parent.CommentNum && includeChildren)
</code></pre>
<p>This code is an improved, bug-fixed version of the code found <a href="http://weblogs.asp.net/okloeten/archive/2006/07/09/Hierarchical-Linq-Queries.aspx" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/203278/are-clean-urls-a-backend-or-a-frontend-thing/203371#2033714Answer by JarrettV for Are clean URLs a backend or a frontend thingJarrettV2008-10-15T00:55:31Z2008-10-15T00:55:31Z<p><strong>The answer is BOTH.</strong> </p>
<p>For example:</p>
<p>http://stackoverflow.com/questions/<strong>203278</strong>/are-clean-urls-a-backend-or-a-frontend-thing</p>
<p>The number above is a database id, a back-end thing. Chop off the pretty part and it goes to the same page. Therefore the <em>"are-clean-urls-a-backend-or-a-frontend-thing"</em> is part of the front-end thing.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203362#20336248Answer by JarrettV for What things didn't you know you needed but are now very glad you have?JarrettV2008-10-15T00:47:49Z2008-10-15T00:47:49Z<p><strong>Fiddler</strong> - HTTP debugger, essential for REST development, <a href="http://www.fiddlertool.com/" rel="nofollow">link</a></p>
<p><strong>FireBug</strong> - javascript/css debugging used to be torcher, FireBug + jQuery make AJAX development fun. <a href="https://addons.mozilla.org/firefox/addon/1843" rel="nofollow">link</a></p>
http://stackoverflow.com/questions/202819/what-is-an-example-of-a-non-relational-database-where-how-are-they-used/203348#2033482Answer by JarrettV for What is an example of a non-relational database? Where/how are they used?JarrettV2008-10-15T00:39:48Z2008-10-15T00:39:48Z<p><a href="http://exist-db.org" rel="nofollow">eXist-db</a> is an xml database that has been around for a long time. It is particularly useful for <a href="http://www.w3.org/TR/xquery/" rel="nofollow">xquery</a> over tons of xml documents.</p>
http://stackoverflow.com/questions/400135/c-listt-or-ilistt/400144#400144Comment by JarrettV on C# - List<T> or IList<T>JarrettV2009-07-13T00:17:04Z2009-07-13T00:17:04ZMicrosoft .NET 4.0 API is using List<T> instead of IList<T>... I wonder why? <a href="http://msdn.microsoft.com/en-us/library/system.web.caching.ioutputcacheentry_properties(VS.100).aspx" rel="nofollow">msdn.microsoft.com/en-us/library/…</a>http://stackoverflow.com/questions/140255/is-there-a-way-to-return-different-types-from-a-wcf-rest-method/140725#140725Comment by JarrettV on Is there a way to return different types from a WCF REST method?JarrettV2009-06-26T19:26:20Z2009-06-26T19:26:20ZWe've since moved away from WCF for REST because it was not flexible enough for our needs. I think the file should still be there in history.http://stackoverflow.com/questions/383192/compile-views-in-asp-net-mvc/383200#383200Comment by JarrettV on Compile Views in ASP.NET MVCJarrettV2009-02-12T20:00:34Z2009-02-12T20:00:34ZThis is out of date, see an excerpt from the readme doc below.http://stackoverflow.com/questions/247433/asp-net-forms-authentication-logging-offComment by JarrettV on ASP.NET Forms Authentication - Logging offJarrettV2008-10-29T16:37:23Z2008-10-29T16:37:23ZWhy are you using forms authentication on an intranet application? Why not use windows authentication?http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203362#203362Comment by JarrettV on What things didn't you know you needed but are now very glad you have?JarrettV2008-10-23T04:51:06Z2008-10-23T04:51:06ZI think it was conscious pun :)http://stackoverflow.com/questions/215515/creating-a-xmlnode-xmlelement-in-c-without-a-xmldocument/215568#215568Comment by JarrettV on Creating a XmlNode/XmlElement in C# without a XmlDocument?JarrettV2008-10-18T21:21:49Z2008-10-18T21:21:49ZI think you meant: <b>instead of X_ml_Document</b>http://stackoverflow.com/questions/205582/how-do-you-use-querystrings-with-asp-net-routing/207748#207748Comment by JarrettV on How do you use querystrings with ASP.NET routing?JarrettV2008-10-17T00:08:32Z2008-10-17T00:08:32ZThere isn't any great documentation about how this works, thanks for the answer.
I wonder why the MVC team thinks querystrings are so bad, i think they make sense in cases of searching and paginghttp://stackoverflow.com/questions/202912/hierarchical-data-in-linq-options-and-performance/203159#203159Comment by JarrettV on Hierarchical data in Linq - options and performanceJarrettV2008-10-15T01:04:53Z2008-10-15T01:04:53ZI added attribution to the Jedi. My version is simplified and improved.