User AugustLights - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T00:06:01Z http://stackoverflow.com/feeds/user/17729 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/176347/asp-net-mvc-test-controllers-w-sessions-mocking 7 ASP/NET MVC: Test Controllers w/Sessions? Mocking? AugustLights 2008-10-06T21:49:05Z 2009-04-24T09:01:13Z <p>I read some of the answers on here re: testing views and controllers, and mocking, but I still can't figure out how to test an ASP.NET MVC controller that reads and sets Session values (or any other context based variables.) How do I provide a (Session) context for my test methods? Is mocking the answer? Anybody have examples? Basically, I'd like to fake a session before I call the controller method and have the controller use that session. Any ideas?</p> http://stackoverflow.com/questions/125400/generic-linq-query-predicate 4 Generic LINQ query predicate? AugustLights 2008-09-24T04:20:38Z 2009-01-15T02:54:26Z <p>Not sure if this is possible or if I'm expressing correctly what I'm looking for, but I have the following piece of code in my library repeatedly and would like to practice some DRY. I have set of SQL Server tables that I'm querying based on a simple user-supplied search field ala Google. I'm using LINQ to compose the final query based on what's in the search string. I'm looking for a way to use generics and passed in lambda functions to create a reusable routine out of this: </p> <pre><code>string[] arrayOfQueryTerms = getsTheArray(); var somequery = from q in dataContext.MyTable select q; if (arrayOfQueryTerms.Length == 1) { somequery = somequery.Where&lt;MyTableEntity&gt;( e =&gt; e.FieldName.StartsWith(arrayOfQueryTerms[0])); } else { foreach(string queryTerm in arrayOfQueryTerms) { if (!String.IsNullOrEmpty(queryTerm)) { somequery = somequery .Where&lt;MyTableEntity&gt;( e =&gt; e.FieldName.Contains(queryTerm)); } } } </code></pre> <p>I was hoping to create a generic method with signature that looks something like:</p> <pre><code>private IQueryable&lt;T&gt; getQuery( T MyTableEntity, string[] arrayOfQueryTerms, Func&lt;T, bool&gt; predicate) </code></pre> <p>I'm using the same search strategy across all my tables, so the only thing that really differs from usage to usage is the MyTable &amp; MyTableEntity searched and the FieldName searched. Does this make sense? Is there a way with LINQ to dynamically pass in the name of the field to query in the where clause? Or can I pass in this as a predicate lambda?</p> <pre><code>e =&gt; e.FieldName.Contains(queryTerm) </code></pre> <p>I realize there a million and a half ways to do this in SQL, probably easier, but I'd love to keep everything in the LINQ family for this one. Also, I feel that generics should be handy for a problem like this. Any ideas?</p> http://stackoverflow.com/questions/127826/easy-to-use-build-workflow-forms-app 0 Easy to use/build workflow forms app? AugustLights 2008-09-24T15:19:35Z 2009-01-08T12:17:23Z <p>Do you guys know of a service, similar to GoogleDocs or something (see <a href="http://blog.stackoverflow.com/2008/08/bad-news-good-news/" rel="nofollow">http://blog.stackoverflow.com/2008/08/bad-news-good-news/</a>) that I can use to set up simple forms that have some sort of workflow built in? We have a lot of cases like requests for new account numbers etc that could use a good workflow, but no one has the time or resources to build a cool generic workflow form app-a-ma-thing. What I'm looking for is an off the shelf hosted app that let's non-technical users set up forms with workflow logic. Free or paid if necessary. We don't have Sharepoint or any other portal solution. We run SAP, but I won't even go there...Thanks!</p> http://stackoverflow.com/questions/316211/help-with-sql-query/316235#316235 5 Answer by AugustLights for Help with SQL query AugustLights 2008-11-25T02:51:56Z 2008-11-25T02:51:56Z <p>Not knowing PHP, can you do it in one query?</p> <pre><code>SELECT booked_rooms.*, hotels.* FROM 'hotels' JOIN 'booked_rooms' ON hotels.hotel_id = booked_rooms.hotel_id WHERE hotels.city='$city" AND ( booked_rooms.arrival_date BETWEEN '$arrival_date' AND '$departure_date' OR booked_rooms.departure_date BETWEEN '$arrival_date' AND '$departure_date') </code></pre> <p>Check the '' quotes around your tables as necessary for the PHP strings etc...</p> http://stackoverflow.com/questions/314307/how-can-i-speed-up-a-joined-update-in-sql-my-statement-seems-to-run-indefinitel/314330#314330 6 Answer by AugustLights for How can I speed up a joined update in SQL? My statement seems to run indefinitely. AugustLights 2008-11-24T14:44:32Z 2008-11-24T15:54:38Z <p>Your initial query executes the inner subquery once for every row in the outer table. See if Oracle likes this better:</p> <pre><code>UPDATE target_table SET special_id = st.source_special_id FROM target_table tt INNER JOIN source_table st WHERE tt.another_id = st.another_id </code></pre> <p>(edited after posted query was corrected)</p> <p><strong>Add:</strong> If the join syntax doesn't work on Oracle, how about:</p> <pre><code>UPDATE target_table SET special_id = st.source_special_id FROM target_table tt, source_table st WHERE tt.another_id = st.another_id </code></pre> <p>The point is to join the two tables rather than using the outer query syntax you are currently using.</p> http://stackoverflow.com/questions/312024/linqy-way-to-check-if-any-objects-in-a-collection-have-the-same-property-value/312037#312037 4 Answer by AugustLights for LINQy way to check if any objects in a collection have the same property value AugustLights 2008-11-23T02:35:36Z 2008-11-23T02:44:08Z <p>Similar to Y Low's approach,</p> <p><strong>Edited:</strong></p> <pre><code> var duplicates = agents.GroupBy(a =&gt; a.ID).Where(a=&gt;a.Count() &gt; 1); foreach (var agent in duplicates) { Console.WriteLine(agent.Key.ToString()); } </code></pre> http://stackoverflow.com/questions/298962/linq-to-sql-entity-objects-as-domain-objects/299008#299008 5 Answer by AugustLights for LINQ To SQL entity objects as domain objects AugustLights 2008-11-18T15:12:00Z 2008-11-18T15:12:00Z <p>I return IQueryable of POCOs from my DAL (which uses LINQ2SQL), so no Linq entity object ever leaves the DAL. These POCOs are returned to the service and UI layers, and are also used to pass data back into the DAL for processing. Linq handles this very well:</p> <pre><code> IQueryable&lt;MyObjects.Product&gt; products = from p in linqDataContext.Products select new MyObjects.Product //POCO { ProductID = p.ProductID }; return products; </code></pre> http://stackoverflow.com/questions/298882/what-are-some-examples-of-good-open-source-asp-net-mvc-applications/298982#298982 8 Answer by AugustLights for What are some examples of good open source ASP.NET MVC applications? AugustLights 2008-11-18T15:05:12Z 2008-11-18T15:05:12Z <p>Rob Connery's <a href="http://blog.wekeroad.com/mvc-storefront/" rel="nofollow">MVC Storefront/Commerce Starter Kit</a>, with videos...</p> http://stackoverflow.com/questions/290602/parallel-linq-in-webapps 0 Parallel LINQ in WebApps? AugustLights 2008-11-14T16:15:33Z 2008-11-14T19:40:09Z <p>I just watched the last <a href="http://channel9.msdn.com/posts/VisualStudio/Using-the-Parallel-Extensions-to-the-NET-Framework/" rel="nofollow">Channel 9 vid</a> on the upcoming parallel extensions to .NET. How would you use this in a web app? I'm specifically thinking of using the parallel Linq extensions against a SQL db. Would this makes sense to use as a way to speed up your data access layer in a multi-user server app? What are the issues (aside from the obvious thread safety issues using static collection types)?</p> http://stackoverflow.com/questions/290597/phone-number-columns-in-a-database/290615#290615 11 Answer by AugustLights for Phone Number Columns in a Database AugustLights 2008-11-14T16:19:01Z 2008-11-14T16:19:01Z <p>Quick test: are you going to add/subtract/multiply/divide Phone Numbers? Nope. Similarly to SSNs, Phone Numbers are discrete pieces of data that can contain actual numbers, so a string type is probably most appropriate.</p> http://stackoverflow.com/questions/274162/is-there-a-benefit-to-using-the-htmlhelper-in-mvc/274170#274170 1 Answer by AugustLights for Is there a benefit to using the HtmlHelper in MVC? AugustLights 2008-11-08T01:28:57Z 2008-11-08T01:28:57Z <p>One thing is for consistency...I for one always forget the name attribute. Plus, you can extend the functions for your own projects. They're not called <strong>helpers</strong> for nothing!</p> http://stackoverflow.com/questions/272210/sql-statement-indentation-good-practice/272231#272231 8 Answer by AugustLights for SQL Statement indentation good practice AugustLights 2008-11-07T14:31:20Z 2008-11-07T14:31:20Z <p>Not sure there is an accepted practice, but here's now how I'd do it:</p> <pre><code>SELECT column1, column2 FROM table1 WHERE column3 IN ( SELECT TOP(1) column4 FROM table2 INNER JOIN table3 ON table2.column1 = table3.column1 ) </code></pre> http://stackoverflow.com/questions/258795/techniques-to-remove-dependencies/258950#258950 0 Answer by AugustLights for Techniques to remove dependencies? AugustLights 2008-11-03T15:14:29Z 2008-11-03T15:14:29Z <p>Have you looked at Dependency Injection frameworks like <a href="http://structuremap.sourceforge.net/Default.htm" rel="nofollow">Structuremap</a> to at least centralize these dependencies and make them configurable? I haven't tried it with events/delegate types, but it's a great tool if you're passing a lot of custom types/interfaces around your layers.</p> http://stackoverflow.com/questions/248273/count-number-of-mondays-in-a-given-date-range/248356#248356 2 Answer by AugustLights for Count number of Mondays in a given date range AugustLights 2008-10-29T20:47:32Z 2008-10-29T20:55:41Z <p>Since you're using C#, if you're using C#3.0, you can use LINQ.</p> <p>Assuming you have an Array/List/IQueryable etc that contains your dates as DateTime types:</p> <pre><code>DateTime[] dates = { new DateTime(2008,10,6), new DateTime(2008,10,7)}; //etc.... var mondays = dates.Where(d =&gt; d.DayOfWeek == DayOfWeek.Monday); // = {10/6/2008} </code></pre> <p>Added:</p> <p>Not sure if you meant grouping them and counting them, but here's how to do that in LINQ as well:</p> <pre><code>var datesgrouped = from d in dates group d by d.DayOfWeek into grouped select new { WeekDay = grouped.Key, Days = grouped }; foreach (var g in datesgrouped) { Console.Write (String.Format("{0} : {1}", g.WeekDay,g.Days.Count()); } </code></pre> http://stackoverflow.com/questions/247858/coalesce-alternative-in-access-sql/247872#247872 2 Answer by AugustLights for coalesce alternative in Access SQL AugustLights 2008-10-29T18:28:15Z 2008-10-29T18:28:15Z <p>If it's in an Access query, you can try this:</p> <pre><code>"Price = IIf([Price] Is Null,0,[Price])" </code></pre> http://stackoverflow.com/questions/245482/asp-net-mvc-post-to-different-views-in-same-form/245501#245501 1 Answer by AugustLights for asp.net mvc post to different views in same form AugustLights 2008-10-29T01:31:15Z 2008-10-29T01:31:15Z <p>MVC Views can have multiple forms on a 'page', so just create separate sections and give each one their own form action.</p> <pre><code>&lt;form id="form1" name="form1" action="/Books/1" method="get"&gt; &lt;!--...form fields--&gt; &lt;/form&gt; &lt;form id="form2" name="form2" action="/Books/2" method="get"&gt; &lt;!--...form fields--&gt; &lt;/form&gt; </code></pre> http://stackoverflow.com/questions/238504/linq-to-sql-loading-child-entities-without-using-dataloadoptions/245451#245451 1 Answer by AugustLights for Linq to Sql - Loading Child Entities Without Using DataLoadOptions? AugustLights 2008-10-29T01:06:32Z 2008-10-29T01:06:32Z <p><a href="http://blog.wekeroad.com/" rel="nofollow">Rob Conery's blog</a> has a way to do using a helper class he has, <code>LazyList&lt;T&gt;</code>. Also he uses custom objects to avoid the join anonymous type issue. I've used this successfully to get parent child relationships from sql without DataLoadOptions.</p> <p>I think he covers it in either Pt2 or Pt3 of his MVC Storefront videos:</p> <p><a href="http://www.asp.net/learn/mvc-videos/video-352.aspx" rel="nofollow">http://www.asp.net/learn/mvc-videos/video-351.aspx</a></p> <p><a href="http://www.asp.net/learn/mvc-videos/video-352.aspx" rel="nofollow">http://www.asp.net/learn/mvc-videos/video-352.aspx</a></p> <p>This assumes you have POCO called Category (not linq entity) and a LazyList class:</p> <pre><code>var categories = (from c in _db.Categories select new Category { CategoryID = c.CategoryID, CategoryName = c.CategoryName, ParentCategoryID = c.ParentCategoryID, SubCategories = new LazyList&lt;Category&gt;( from sc in _db.Categories where sc.ParentCategoryID == c.CategoryID select new Category { CategoryID = sc.CategoryID, CategoryName = sc.CategoryName, ParentCategoryID = sc.ParentCategoryID }) }); </code></pre> http://stackoverflow.com/questions/245168/linq-to-sql-todictionary 6 Linq-to-SQL ToDictionary() AugustLights 2008-10-28T22:50:06Z 2008-10-28T23:12:06Z <p>How do I properly convert two columns from SQL (2008) using Linq into a Dictionary (for caching)?</p> <p>I currently loop through the IQueryable b/c I can't get the ToDictionary method to work. Any ideas? This works:</p> <pre><code>var query = from p in db.Table select p; Dictionary&lt;string, string&gt; dic = new Dictionary&lt;string, string&gt;(); foreach (var p in query) { dic.Add(sub.Key, sub.Value); } </code></pre> <p>What I'd really like to do is something like this, which doesn't seem to work:</p> <pre><code>var dic = (from p in db.Table select new {p.Key, p.Value }) .ToDictionary&lt;string, string&gt;(p =&gt; p.Key); </code></pre> <p>But I get this error: Cannot convert from 'System.Linq.IQueryable' to 'System.Collections.Generic.IEnumerable'</p> <p>Answer (thanks!):</p> <pre><code>var dic = db .Table .Select(p =&gt; new { p.Key, p.Value }) .AsEnumerable() .ToDictionary(k=&gt; k.Key, v =&gt; v.Value); </code></pre> http://stackoverflow.com/questions/245168/linq-to-sql-todictionary/245216#245216 1 Answer by AugustLights for Linq-to-SQL ToDictionary() AugustLights 2008-10-28T23:07:38Z 2008-10-28T23:07:38Z <p>Thanks guys, your answers helped me fix this, should be:</p> <pre><code>var dic = db .Table .Select(p =&gt; new { p.Key, p.Value }) .AsEnumerable() .ToDictionary(k=&gt; k.Key, v =&gt; v.Value); </code></pre> http://stackoverflow.com/questions/230006/renumber-primary-key/230041#230041 1 Answer by AugustLights for renumber primary key AugustLights 2008-10-23T14:51:33Z 2008-10-23T14:51:33Z <p>This may or not be MS SQL specific, but: TRUNCATE TABLE resets the identity counter, so one way to do this quick and dirty would be to 1) Do a Backup 2) Copy table contents to temp table: 3) Copy temp table contents back to table (which has the identity column):</p> <pre><code>SELECT Field1, Field2 INTO #MyTable FROM MyTable TRUNCATE TABLE MyTable INSERT INTO MyTable (Field1, Field2) SELECT Field1, Field2 FROM #MyTable SELECT * FROM MyTable ----------------------------------- ID Field1 Field2 1 Value1 Value2 </code></pre> http://stackoverflow.com/questions/204836/is-there-any-good-resources-for-t4-text-templating-framework-from-microsoft/204912#204912 2 Answer by AugustLights for Is there any good resources for T4 (Text Templating framework from Microsoft)? AugustLights 2008-10-15T14:24:37Z 2008-10-15T14:24:37Z <p>The Hanselman post links to this, but just in case: Rob Conery also just recently blogged on this and as usual, it's excellent: <a href="http://blog.wekeroad.com/blog/make-visual-studio-generate-your-repository/" rel="nofollow">http://blog.wekeroad.com/blog/make-visual-studio-generate-your-repository/</a></p> http://stackoverflow.com/questions/202912/hierarchical-data-in-linq-options-and-performance/203190#203190 0 Answer by AugustLights for Hierarchical data in Linq - options and performance AugustLights 2008-10-14T23:19:02Z 2008-10-14T23:19:02Z <p>I got this approach from <a href="http://blog.wekeroad.com/mvc-storefront/" rel="nofollow">Rob Conery's blog</a> (check around Pt. 6 for this code, also on codeplex) and I love using it. This could be refashioned to support multiple "sub" levels.</p> <pre><code>var categories = from c in db.Categories select new Category { CategoryID = c.CategoryID, ParentCategoryID = c.ParentCategoryID, SubCategories = new List&lt;Category&gt;( from sc in db.Categories where sc.ParentCategoryID == c.CategoryID select new Category { CategoryID = sc.CategoryID, ParentProductID = sc.ParentProductID } ) }; </code></pre> http://stackoverflow.com/questions/175962/dynamic-select-top-var-in-sql-server/176262#176262 4 Answer by AugustLights for Dynamic SELECT TOP @var In SQL Server AugustLights 2008-10-06T21:26:55Z 2008-10-06T21:26:55Z <p>In x0n's example, it should be:</p> <pre><code>SET ROWCOUNT @top SELECT * from sometable SET ROWCOUNT 0 </code></pre> <p><a href="http://msdn.microsoft.com/en-us/library/ms188774.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms188774.aspx</a></p> http://stackoverflow.com/questions/152770/transpose-a-set-of-rows-as-columns-in-sql-server-2000/169412#169412 1 Answer by AugustLights for Transpose a set of rows as columns in SQL Server 2000 AugustLights 2008-10-04T00:19:01Z 2008-10-04T00:25:11Z <p>The cursor method described is probably the least SQL-like to use. As mentioned, SQL 2005 and on has PIVOT which works great. But for older versions and non-MS SQL servers, the Rozenshtein method from "Optimzing Transact-SQL" (edit: out of print, but avail. from Amazon: <a href="http://rads.stackoverflow.com/amzn/click/0964981203" rel="nofollow">http://www.amazon.com/Optimizing-Transact-SQL-Advanced-Programming-Techniques/dp/0964981203</a>), is excellent for pivoting and unpivoting data. It uses point characteristics to turn row based data into columns. Rozenshtein describes several cases, here's one example:</p> <pre><code>SELECT RowValueNowAColumn = CONVERT(varchar, MAX( SUBSTRING(myTable.MyVarCharColumn,1,DATALENGTH(myTable.MyVarCharColumn) * CHARINDEX(sa.SearchAttributeName,'MyRowValue')))) FROM myTable </code></pre> <p>This method is a lot more efficient than using case statements and works for a variety of data types and SQL implementations (not just MS SQL). </p> http://stackoverflow.com/questions/162919/spawning-multiple-sql-tasks-in-sql-server-2005/162961#162961 2 Answer by AugustLights for Spawning multiple SQL tasks in SQL Server 2005 AugustLights 2008-10-02T15:21:19Z 2008-10-02T15:21:19Z <p>Is SSIS an option for you? You can create a simple package with parallel Execute SQL tasks to execute the stored procs simultaneously. However, depending on what your stored procs do, you may or may not get benefit from starting this in parallel (e.g. if they all access the same table records, one may have to wait for locks to be released etc.)</p> http://stackoverflow.com/questions/162681/how-to-parse-formatted-email-address-into-display-name-and-email-address/162700#162700 1 Answer by AugustLights for How to parse formatted email address into display name and email address? AugustLights 2008-10-02T14:46:01Z 2008-10-02T15:12:42Z <p>Try:</p> <pre><code>"Jimbo &lt;jim@example.com&gt;" </code></pre> http://stackoverflow.com/questions/153478/is-there-a-sql-server-profiler-similar-to-java-net-profilers/153508#153508 1 Answer by AugustLights for Is there a SQL Server profiler similar to Java/.Net profilers? AugustLights 2008-09-30T15:16:58Z 2008-09-30T15:16:58Z <p>As mentioned, SQL Server Profiler, which is great for checking what parameters you're program is passing to SQL etc. It won't show you an execution tree though if that's what you need. For that, all I can think of is to use Show Plan to see what exactly is executed at run-time. E.g. if you're calling an sp that calls a view, Profiler will only show you that the sp was executed and what params were passed in. Also, the Windows Performance Monitor has extensive run-time performance metrics specific to SQL Server. You can run it on the server, or connect remotely.</p> http://stackoverflow.com/questions/151794/unit-testing-the-views/151866#151866 1 Answer by AugustLights for Unit Testing the Views? AugustLights 2008-09-30T05:32:04Z 2008-09-30T05:32:04Z <p>S. Walther has something that addresses this, but it looks a little cumbersome... <a href="http://weblogs.asp.net/stephenwalther/archive/2008/07/26/asp-net-mvc-tip-25-unit-test-your-views-without-a-web-server.aspx" rel="nofollow">http://weblogs.asp.net/stephenwalther/archive/2008/07/26/asp-net-mvc-tip-25-unit-test-your-views-without-a-web-server.aspx</a></p> <p>I'm gonna look into this some more...seems like a reasonable thing to do...</p> http://stackoverflow.com/questions/149132/how-can-one-iterate-over-stored-procedure-results-from-within-another-stored-proc/151567#151567 2 Answer by AugustLights for How can one iterate over stored procedure results from within another stored procedure....without cursors? AugustLights 2008-09-30T02:38:28Z 2008-09-30T02:50:50Z <p>You could also change your stored proc to a user-defined function that returns a table with your uniqueidentifiers. You can joing directly to the UDF and treat it like a table which avoids having to create the extra temp table explicitly. Also, you can pass parameters into the function as you're calling it, making this a very flexible solution.</p> <pre><code>CREATE FUNCTION dbo.udfGetUniqueIDs () RETURNS TABLE AS RETURN ( SELECT uniqueid FROM dbo.SomeWhere ) GO UPDATE dbo.TargetTable SET a.FlagColumn = 1 FROM dbo.TargetTable a INNER JOIN dbo.udfGetUniqueIDs() b ON a.uniqueid = b.uniqueid </code></pre> <p><b>Edit:</b> This will work on SQL Server 2000 and up...</p> http://stackoverflow.com/questions/151047/what-technology-stack-would-you-use-for-starting-a-new-net-web-project/151116#151116 7 Answer by AugustLights for What technology stack would you use for starting a new .NET web project? AugustLights 2008-09-29T23:05:04Z 2008-09-29T23:05:04Z <p>I'd start with ASP.NET MVC, plus LINQ-to-SQL and JQuery and you're pretty much in productivity heaven. To scale up, you can later move your database / logic work to WCF. I'm working on two commercial project using this exact stack. Plus, incidentally, it's the SO stack...</p> http://stackoverflow.com/questions/319251/can-you-recommend-a-good-source-for-teradata-best-practices/341794#341794 Comment by AugustLights on Can you recommend a good source for Teradata Best Practices? AugustLights 2008-12-18T15:29:57Z 2008-12-18T15:29:57Z Do you mind sharing those pointers? Kinda what this is all about... http://stackoverflow.com/questions/353104/what-is-the-relationship-between-programming-and-music/353169#353169 Comment by AugustLights on What is the relationship between programming and music? AugustLights 2008-12-10T05:26:27Z 2008-12-10T05:26:27Z Good point. I would think programmers also like maps and puzzles, both also related to pattern recognition abilities. http://stackoverflow.com/questions/71022/sql-max-of-multiple-columns/331873#331873 Comment by AugustLights on SQL MAX of multiple columns? AugustLights 2008-12-01T19:34:34Z 2008-12-01T19:34:34Z tag is sqlserver http://stackoverflow.com/questions/316211/help-with-sql-query/316271#316271 Comment by AugustLights on Help with SQL query AugustLights 2008-11-25T03:30:49Z 2008-11-25T03:30:49Z Don't you need parentheses around the second section of your where clause? Otherwise, the precedence of those predicates is not clear...? http://stackoverflow.com/questions/316211/help-with-sql-query/316262#316262 Comment by AugustLights on Help with SQL query AugustLights 2008-11-25T03:17:02Z 2008-11-25T03:17:02Z Yeah, sorry, can't help you on the PHP syntax. But I would think if you approach the problem as one query you at least avoid querying the db for booked_rooms for every hotel. http://stackoverflow.com/questions/290602/parallel-linq-in-webapps/290795#290795 Comment by AugustLights on Parallel LINQ in WebApps? AugustLights 2008-11-25T03:13:31Z 2008-11-25T03:13:31Z Thanks for the link! No pun intended...or maybe? ;) http://stackoverflow.com/questions/290602/parallel-linq-in-webapps/290790#290790 Comment by AugustLights on Parallel LINQ in WebApps? AugustLights 2008-11-25T03:12:28Z 2008-11-25T03:12:28Z Makes sense, kinda what I thought. Was just excited about PLINQ... http://stackoverflow.com/questions/314307/how-can-i-speed-up-a-joined-update-in-sql-my-statement-seems-to-run-indefinitel/314330#314330 Comment by AugustLights on How can I speed up a joined update in SQL? My statement seems to run indefinitely. AugustLights 2008-11-25T02:45:04Z 2008-11-25T02:45:04Z @Tom: You're correct for your query, but I don't think that's the gist of what i wrote. What am I missing? @Mark, ha ha, I wish...! You're right, it's ludicrous that an answer like this gets upvoted vs stuff I labored over.... http://stackoverflow.com/questions/314307/how-can-i-speed-up-a-joined-update-in-sql-my-statement-seems-to-run-indefinitel/314330#314330 Comment by AugustLights on How can I speed up a joined update in SQL? My statement seems to run indefinitely. AugustLights 2008-11-24T16:24:44Z 2008-11-24T16:24:44Z @Tom: your second option has the same effect as my syntax, although I find it counterintuitive to update an alias. @Tony: I'm only putting this out there to illustrate a point, pls offer an Oracle based solution then...! http://stackoverflow.com/questions/314307/how-can-i-speed-up-a-joined-update-in-sql-my-statement-seems-to-run-indefinitel/314330#314330 Comment by AugustLights on How can I speed up a joined update in SQL? My statement seems to run indefinitely. AugustLights 2008-11-24T15:47:14Z 2008-11-24T15:47:14Z @Tom, no this is correct for SQL, the alias has to be in the from clause. @Tony for Oracle, I'm not sure, but you may have to an older ANSI join using a WHERE clause after the FROM. http://stackoverflow.com/questions/314307/how-can-i-speed-up-a-joined-update-in-sql-my-statement-seems-to-run-indefinitel/314327#314327 Comment by AugustLights on How can I speed up a joined update in SQL? My statement seems to run indefinitely. AugustLights 2008-11-24T14:45:57Z 2008-11-24T14:45:57Z I think the point is the subquery...you're right on the ID update though, that doesn't make sense. But I think his statement executes the inner query once for every router row. http://stackoverflow.com/questions/312024/linqy-way-to-check-if-any-objects-in-a-collection-have-the-same-property-value/312037#312037 Comment by AugustLights on LINQy way to check if any objects in a collection have the same property value AugustLights 2008-11-23T03:02:44Z 2008-11-23T03:02:44Z As an aside, the Parallel Extensions to .NET are going to make stuff like this very interesting (and fast)...! http://stackoverflow.com/questions/312024/linqy-way-to-check-if-any-objects-in-a-collection-have-the-same-property-value/312037#312037 Comment by AugustLights on LINQy way to check if any objects in a collection have the same property value AugustLights 2008-11-23T02:45:38Z 2008-11-23T02:45:38Z Matt...we'd have to test that I guess. I just approached it like a SQL problem. I'm a db guy, so I love Linq for it's Sql-like approach to problems like this... http://stackoverflow.com/questions/312024/linqy-way-to-check-if-any-objects-in-a-collection-have-the-same-property-value/312037#312037 Comment by AugustLights on LINQy way to check if any objects in a collection have the same property value AugustLights 2008-11-23T02:41:17Z 2008-11-23T02:41:17Z Just posted an update, just combine the two (GroupBy and Where) to get the key of the duplicate object... http://stackoverflow.com/questions/307740/in-mvc-when-do-you-use-and/307754#307754 Comment by AugustLights on In MVC, when do you use <%= %> and <% %>? AugustLights 2008-11-21T03:38:09Z 2008-11-21T03:38:09Z Correct. Same rules as in ASP.NET and ASP Classic apply.