<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>JSLINQ Work Item Rss Feed</title><link>http://www.codeplex.com/JSLINQ/WorkItem/List.aspx</link><description>JSLINQ Work Item Rss Description</description><item><title>Created Issue: Distinct function not working properly with an object [9775]</title><link>http://jslinq.codeplex.com/workitem/9775</link><description>I made a fix&amp;#33;&lt;br /&gt;We assume that if the programmer doesn&amp;#39;t want a distinct on a base type collection he just uses a clause to help knowing how to compare them.&lt;br /&gt;Enjoy&lt;br /&gt;&lt;br /&gt;Distinct&amp;#58; function &amp;#40;clause&amp;#41; &amp;#123;&lt;br /&gt;            var item&amp;#59;&lt;br /&gt;            var dict &amp;#61; new Object&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;            var retVal &amp;#61; new Array&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;            for &amp;#40;var i &amp;#61; 0&amp;#59; i &amp;#38;lt&amp;#59; this.items.length&amp;#59; i&amp;#43;&amp;#43;&amp;#41; &amp;#123;&lt;br /&gt;                item &amp;#61; this.items&amp;#91;i&amp;#93;&amp;#59;&lt;br /&gt;                if &amp;#40;&amp;#40;clause &amp;#61;&amp;#61; null &amp;#38;amp&amp;#59;&amp;#38;amp&amp;#59; dict&amp;#91;item&amp;#93; &amp;#61;&amp;#61; null&amp;#41; &amp;#124;&amp;#124; &amp;#40;clause &amp;#33;&amp;#61; null &amp;#38;amp&amp;#59;&amp;#38;amp&amp;#59; dict&amp;#91;clause&amp;#40;item&amp;#41;&amp;#93; &amp;#61;&amp;#61; null&amp;#41;&amp;#41; &amp;#123;&lt;br /&gt;                    if &amp;#40;clause &amp;#61;&amp;#61; null&amp;#41;&lt;br /&gt;                        dict&amp;#91;item&amp;#93; &amp;#61; true&amp;#59;&lt;br /&gt;                    else&lt;br /&gt;                        dict&amp;#91;clause&amp;#40;item&amp;#41;&amp;#93; &amp;#61; true&amp;#59;&lt;br /&gt;                    retVal&amp;#91;retVal.length&amp;#93; &amp;#61; item&amp;#59;&lt;br /&gt;                &amp;#125;&lt;br /&gt;            &amp;#125;&lt;br /&gt;            dict &amp;#61; null&amp;#59;&lt;br /&gt;            return new JSLINQ&amp;#40;retVal&amp;#41;&amp;#59;&lt;br /&gt;        &amp;#125;,&lt;br /&gt;</description><author>baywet</author><pubDate>Sat, 08 Dec 2012 22:24:46 GMT</pubDate><guid isPermaLink="false">Created Issue: Distinct function not working properly with an object [9775] 20121208102446P</guid></item><item><title>Created Issue: Select function has problems [7820]</title><link>http://jslinq.codeplex.com/workitem/7820</link><description>Very good work&amp;#33;&lt;br /&gt;Some minor problems I have found has to do with the Select function, which does not allow return items to be null and also has some performance issue.&lt;br /&gt;&lt;br /&gt;This is how it is now&amp;#58;&lt;br /&gt;&lt;br /&gt; Select&amp;#58; function&amp;#40;clause&amp;#41; &amp;#123;&lt;br /&gt;            var item&amp;#59;&lt;br /&gt;            var newArray &amp;#61; new Array&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;            &amp;#47;&amp;#47; The clause was passed in as a Method that returns a Value&lt;br /&gt;            for &amp;#40;var i &amp;#61; 0&amp;#59; i &amp;#60; this.items.length&amp;#59; i&amp;#43;&amp;#43;&amp;#41; &amp;#123;&lt;br /&gt;                if &amp;#40;clause&amp;#40;this.items&amp;#91;i&amp;#93;&amp;#41;&amp;#41; &amp;#123;&lt;br /&gt;                    newArray&amp;#91;newArray.length&amp;#93; &amp;#61; clause&amp;#40;this.items&amp;#91;i&amp;#93;&amp;#41;&amp;#59;&lt;br /&gt;                &amp;#125;&lt;br /&gt;            &amp;#125;&lt;br /&gt;            return new JSLINQ&amp;#40;newArray&amp;#41;&amp;#59;&lt;br /&gt;        &amp;#125;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;This is how i think it should be&amp;#58;&lt;br /&gt;Select&amp;#58; function&amp;#40;clause&amp;#41; &amp;#123;&lt;br /&gt;            var item&amp;#59;&lt;br /&gt;            var newArray &amp;#61; new Array&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;            &amp;#47;&amp;#47; The clause was passed in as a Method that returns a Value&lt;br /&gt;            for &amp;#40;var i &amp;#61; 0&amp;#59; i &amp;#60; this.items.length&amp;#59; i&amp;#43;&amp;#43;&amp;#41; &amp;#123;&lt;br /&gt;                newArray&amp;#91;newArray.length&amp;#93; &amp;#61; clause&amp;#40;this.items&amp;#91;i&amp;#93;&amp;#41;&amp;#59;&lt;br /&gt;            &amp;#125;&lt;br /&gt;            return new JSLINQ&amp;#40;newArray&amp;#41;&amp;#59;&lt;br /&gt;        &amp;#125;&lt;br /&gt;&lt;br /&gt;Actually i totally removed the check &amp;#58;  if &amp;#40;clause&amp;#40;this.items&amp;#91;i&amp;#93;&amp;#41;&amp;#41; &amp;#123;&lt;br /&gt;I think this must be a left over from the &amp;#34;Where&amp;#34; function, where it was indeed needed.&lt;br /&gt;&lt;br /&gt;Thanks&amp;#33;&lt;br /&gt;</description><author>Mavritsakis</author><pubDate>Tue, 18 Jan 2011 10:24:11 GMT</pubDate><guid isPermaLink="false">Created Issue: Select function has problems [7820] 20110118102411A</guid></item><item><title>Commented Feature: Make all methods access "C#-like Lambda Expressions" where applicable [4211]</title><link>http://jslinq.codeplex.com/workitem/4211</link><description>Make all methods access &amp;#34;C&amp;#35;-like Lambda Expressions&amp;#34; where applicable&lt;br /&gt;&lt;br /&gt;The &amp;#34;OrderBy&amp;#34; and &amp;#34;OrderByDescending&amp;#34; methods already have this done.&lt;br /&gt;&lt;br /&gt;For Example&amp;#58;&lt;br /&gt;var sample &amp;#61; JSLINQ&amp;#40;Samples.People&amp;#41;&lt;br /&gt;    .OrderBy&amp;#40;&amp;#34;item &amp;#61;&amp;#62; item.FirstName&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;Comments: ** Comment from web user: glen ** &lt;p&gt;This would be nice, but I would NOT want to see everything inside strings&amp;#33;&lt;/p&gt;</description><author>glen</author><pubDate>Wed, 15 Dec 2010 03:20:56 GMT</pubDate><guid isPermaLink="false">Commented Feature: Make all methods access "C#-like Lambda Expressions" where applicable [4211] 20101215032056A</guid></item><item><title>Closed Feature: Add ".Random(count)" method [7419]</title><link>http://jslinq.codeplex.com/workitem/7419</link><description>Randomly selects elements.&lt;br /&gt;This method will return the specified number of elements at random. If you number is specified then only a single element is returned.&lt;br /&gt;&lt;br /&gt;http&amp;#58;&amp;#47;&amp;#47;jslinq.codeplex.com&amp;#47;Thread&amp;#47;View.aspx&amp;#63;ThreadId&amp;#61;76545&lt;br /&gt;Comments: &lt;p&gt;Done&lt;/p&gt;</description><author>crpietschmann</author><pubDate>Mon, 25 Oct 2010 14:06:51 GMT</pubDate><guid isPermaLink="false">Closed Feature: Add ".Random(count)" method [7419] 20101025020651P</guid></item><item><title>Created Feature: Add ".Random(count)" method [7419]</title><link>http://jslinq.codeplex.com/workitem/7419</link><description>Randomly selects elements.&lt;br /&gt;This method will return the specified number of elements at random. If you number is specified then only a single element is returned.&lt;br /&gt;&lt;br /&gt;http&amp;#58;&amp;#47;&amp;#47;jslinq.codeplex.com&amp;#47;Thread&amp;#47;View.aspx&amp;#63;ThreadId&amp;#61;76545&lt;br /&gt;</description><author>crpietschmann</author><pubDate>Mon, 25 Oct 2010 13:42:47 GMT</pubDate><guid isPermaLink="false">Created Feature: Add ".Random(count)" method [7419] 20101025014247P</guid></item><item><title>Closed Feature: Create ".Each" method [6086]</title><link>http://jslinq.codeplex.com/workitem/6086</link><description>Create &amp;#34;.Each&amp;#34; or &amp;#34;.ForEach&amp;#34; methods to allow for more easy looping through the set of data within the JSLINQ object.&lt;br /&gt;&lt;br /&gt;Example Usage&amp;#58;&lt;br /&gt;&lt;br /&gt;function displayData&amp;#40;dataItem&amp;#41;&amp;#123;&lt;br /&gt;    alert&amp;#40;dataItem&amp;#41;&amp;#59;&lt;br /&gt;&amp;#125;&lt;br /&gt;&lt;br /&gt;var newArray &amp;#61; exampleArray.&lt;br /&gt;  Where&amp;#40;function&amp;#40;item&amp;#41;&amp;#123; return item.FirstName &amp;#61;&amp;#61; &amp;#34;Chris&amp;#34;&amp;#59; &amp;#125;&amp;#41;.&lt;br /&gt;  Select&amp;#40;function&amp;#40;item&amp;#41;&amp;#123; return item.FirstName&amp;#59; &amp;#125;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;newArray.Each&amp;#40;displayData&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;newArray.ForEach&amp;#40;function&amp;#40;item&amp;#41;&amp;#123;&lt;br /&gt;  alert&amp;#40;item&amp;#41;&amp;#59;&lt;br /&gt;&amp;#125;&amp;#41;&amp;#59;&lt;br /&gt;Comments: &lt;p&gt;Done&lt;/p&gt;</description><author>crpietschmann</author><pubDate>Mon, 25 Oct 2010 13:26:37 GMT</pubDate><guid isPermaLink="false">Closed Feature: Create ".Each" method [6086] 20101025012637P</guid></item><item><title>Closed Feature: Add .Skip method [7418]</title><link>http://jslinq.codeplex.com/workitem/7418</link><description>http&amp;#58;&amp;#47;&amp;#47;msdn.microsoft.com&amp;#47;en-us&amp;#47;library&amp;#47;bb358985.aspx&lt;br /&gt;&lt;br /&gt;&amp;#34;Bypasses a specified number of elements in a sequence and then returns the remaining elements.&amp;#34;&lt;br /&gt;&lt;br /&gt;http&amp;#58;&amp;#47;&amp;#47;www.gregshackles.com&amp;#47;2010&amp;#47;03&amp;#47;linq-for-javascript-using-and-extending-jslinq&amp;#47;&lt;br /&gt;Comments: &lt;p&gt;Done&lt;/p&gt;</description><author>crpietschmann</author><pubDate>Mon, 25 Oct 2010 12:37:42 GMT</pubDate><guid isPermaLink="false">Closed Feature: Add .Skip method [7418] 20101025123742P</guid></item><item><title>Created Feature: Add .Skip method [7418]</title><link>http://jslinq.codeplex.com/workitem/7418</link><description>http&amp;#58;&amp;#47;&amp;#47;msdn.microsoft.com&amp;#47;en-us&amp;#47;library&amp;#47;bb358985.aspx&lt;br /&gt;&lt;br /&gt;&amp;#34;Bypasses a specified number of elements in a sequence and then returns the remaining elements.&amp;#34;&lt;br /&gt;&lt;br /&gt;http&amp;#58;&amp;#47;&amp;#47;www.gregshackles.com&amp;#47;2010&amp;#47;03&amp;#47;linq-for-javascript-using-and-extending-jslinq&amp;#47;&lt;br /&gt;</description><author>crpietschmann</author><pubDate>Mon, 25 Oct 2010 12:29:43 GMT</pubDate><guid isPermaLink="false">Created Feature: Add .Skip method [7418] 20101025122943P</guid></item><item><title>Closed Feature: Create .Take method [7417]</title><link>http://jslinq.codeplex.com/workitem/7417</link><description>Isn&amp;#39;t really a LINQ methods in .NET since it is on the IEnumerable&amp;#60;&amp;#62; interface. However, it would be useful in this library.&lt;br /&gt;&lt;br /&gt;.Take - http&amp;#58;&amp;#47;&amp;#47;msdn.microsoft.com&amp;#47;en-us&amp;#47;library&amp;#47;bb503062.aspx&lt;br /&gt;&amp;#34;Returns a specified number of contiguous elements from the start of a sequence.&amp;#34;&lt;br /&gt;&lt;br /&gt;I got the idea for this from Greg Shackles at http&amp;#58;&amp;#47;&amp;#47;www.gregshackles.com&amp;#47;2010&amp;#47;03&amp;#47;linq-for-javascript-using-and-extending-jslinq&amp;#47;&lt;br /&gt;Comments: &lt;p&gt;Done&lt;/p&gt;</description><author>crpietschmann</author><pubDate>Mon, 25 Oct 2010 12:26:11 GMT</pubDate><guid isPermaLink="false">Closed Feature: Create .Take method [7417] 20101025122611P</guid></item><item><title>Created Issue: Create .Take and .TakeWhile methods [7417]</title><link>http://jslinq.codeplex.com/workitem/7417</link><description>These aren&amp;#39;t really LINQ methods in .NET since they are on the IEnumerable&amp;#60;&amp;#62; interface. However, they would be useful in this library.&lt;br /&gt;&lt;br /&gt;.Take - http&amp;#58;&amp;#47;&amp;#47;msdn.microsoft.com&amp;#47;en-us&amp;#47;library&amp;#47;bb503062.aspx&lt;br /&gt;.TakeWhile - http&amp;#58;&amp;#47;&amp;#47;msdn.microsoft.com&amp;#47;en-us&amp;#47;library&amp;#47;bb534804.aspx&lt;br /&gt;&lt;br /&gt;I got the idea for these from Greg Shackles at http&amp;#58;&amp;#47;&amp;#47;www.gregshackles.com&amp;#47;2010&amp;#47;03&amp;#47;linq-for-javascript-using-and-extending-jslinq&amp;#47;&lt;br /&gt;</description><author>crpietschmann</author><pubDate>Mon, 25 Oct 2010 12:01:44 GMT</pubDate><guid isPermaLink="false">Created Issue: Create .Take and .TakeWhile methods [7417] 20101025120144P</guid></item><item><title>Commented Feature: Create ".Each" or ".ForEach" methods [6086]</title><link>http://jslinq.codeplex.com/WorkItem/View.aspx?WorkItemId=6086</link><description>Create &amp;#34;.Each&amp;#34; or &amp;#34;.ForEach&amp;#34; methods to allow for more easy looping through the set of data within the JSLINQ object.&lt;br /&gt;&lt;br /&gt;Example Usage&amp;#58;&lt;br /&gt;&lt;br /&gt;function displayData&amp;#40;dataItem&amp;#41;&amp;#123;&lt;br /&gt;    alert&amp;#40;dataItem&amp;#41;&amp;#59;&lt;br /&gt;&amp;#125;&lt;br /&gt;&lt;br /&gt;var newArray &amp;#61; exampleArray.&lt;br /&gt;  Where&amp;#40;function&amp;#40;item&amp;#41;&amp;#123; return item.FirstName &amp;#61;&amp;#61; &amp;#34;Chris&amp;#34;&amp;#59; &amp;#125;&amp;#41;.&lt;br /&gt;  Select&amp;#40;function&amp;#40;item&amp;#41;&amp;#123; return item.FirstName&amp;#59; &amp;#125;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;newArray.Each&amp;#40;displayData&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;newArray.ForEach&amp;#40;function&amp;#40;item&amp;#41;&amp;#123;&lt;br /&gt;  alert&amp;#40;item&amp;#41;&amp;#59;&lt;br /&gt;&amp;#125;&amp;#41;&amp;#59;&lt;br /&gt;Comments: ** Comment from web user: gshackles ** &lt;p&gt;Just noticed this issue...I actually just put up a new blog post about using&amp;#47;extending JSLINQ, and include a sample implementation for ForEach&amp;#58; http&amp;#58;&amp;#47;&amp;#47;www.gregshackles.com&amp;#47;2010&amp;#47;03&amp;#47;linq-for-javascript-using-and-extending-jslinq&amp;#47;&lt;/p&gt;&lt;p&gt;Oddly enough, I based mine on jQuery&amp;#39;s implementation of each&amp;#40;&amp;#41;.  There could be room for improvement, but I think it&amp;#39;s a good starting point.&lt;/p&gt;</description><author>gshackles</author><pubDate>Wed, 17 Mar 2010 03:27:43 GMT</pubDate><guid isPermaLink="false">Commented Feature: Create ".Each" or ".ForEach" methods [6086] 20100317032743A</guid></item><item><title>Commented Feature: Create ".Each" or ".ForEach" methods [6086]</title><link>http://jslinq.codeplex.com/WorkItem/View.aspx?WorkItemId=6086</link><description>Create &amp;#34;.Each&amp;#34; or &amp;#34;.ForEach&amp;#34; methods to allow for more easy looping through the set of data within the JSLINQ object.&lt;br /&gt;&lt;br /&gt;Example Usage&amp;#58;&lt;br /&gt;&lt;br /&gt;function displayData&amp;#40;dataItem&amp;#41;&amp;#123;&lt;br /&gt;    alert&amp;#40;dataItem&amp;#41;&amp;#59;&lt;br /&gt;&amp;#125;&lt;br /&gt;&lt;br /&gt;var newArray &amp;#61; exampleArray.&lt;br /&gt;  Where&amp;#40;function&amp;#40;item&amp;#41;&amp;#123; return item.FirstName &amp;#61;&amp;#61; &amp;#34;Chris&amp;#34;&amp;#59; &amp;#125;&amp;#41;.&lt;br /&gt;  Select&amp;#40;function&amp;#40;item&amp;#41;&amp;#123; return item.FirstName&amp;#59; &amp;#125;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;newArray.Each&amp;#40;displayData&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;newArray.ForEach&amp;#40;function&amp;#40;item&amp;#41;&amp;#123;&lt;br /&gt;  alert&amp;#40;item&amp;#41;&amp;#59;&lt;br /&gt;&amp;#125;&amp;#41;&amp;#59;&lt;br /&gt;Comments: ** Comment from web user: crpietschmann ** &lt;p&gt;Probably good idea to look at jQuery methods for inspiration on how to make this work best.&lt;/p&gt;</description><author>crpietschmann</author><pubDate>Thu, 25 Feb 2010 20:11:04 GMT</pubDate><guid isPermaLink="false">Commented Feature: Create ".Each" or ".ForEach" methods [6086] 20100225081104P</guid></item><item><title>Created Feature: Create ".Each" or ".ForEach" methods [6086]</title><link>http://jslinq.codeplex.com/WorkItem/View.aspx?WorkItemId=6086</link><description>Create &amp;#34;.Each&amp;#34; or &amp;#34;.ForEach&amp;#34; methods to allow for more easy looping through the set of data within the JSLINQ object.&lt;br /&gt;&lt;br /&gt;Example Usage&amp;#58;&lt;br /&gt;&lt;br /&gt;function displayData&amp;#40;dataItem&amp;#41;&amp;#123;&lt;br /&gt;    alert&amp;#40;dataItem&amp;#41;&amp;#59;&lt;br /&gt;&amp;#125;&lt;br /&gt;&lt;br /&gt;var newArray &amp;#61; exampleArray.&lt;br /&gt;  Where&amp;#40;function&amp;#40;item&amp;#41;&amp;#123; return item.FirstName &amp;#61;&amp;#61; &amp;#34;Chris&amp;#34;&amp;#59; &amp;#125;&amp;#41;.&lt;br /&gt;  Select&amp;#40;function&amp;#40;item&amp;#41;&amp;#123; return item.FirstName&amp;#59; &amp;#125;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;newArray.Each&amp;#40;displayData&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;newArray.ForEach&amp;#40;function&amp;#40;item&amp;#41;&amp;#123;&lt;br /&gt;  alert&amp;#40;item&amp;#41;&amp;#59;&lt;br /&gt;&amp;#125;&amp;#41;&amp;#59;&lt;br /&gt;</description><author>crpietschmann</author><pubDate>Thu, 25 Feb 2010 20:10:16 GMT</pubDate><guid isPermaLink="false">Created Feature: Create ".Each" or ".ForEach" methods [6086] 20100225081016P</guid></item><item><title>Created Feature: Make all methods access "C#-like Lambda Expressions" where applicable</title><link>http://jslinq.codeplex.com/WorkItem/View.aspx?WorkItemId=4211</link><description>Make all methods access &amp;#34;C&amp;#35;-like Lambda Expressions&amp;#34; where applicable&lt;br /&gt;&lt;br /&gt;The &amp;#34;OrderBy&amp;#34; and &amp;#34;OrderByDescending&amp;#34; methods already have this done.&lt;br /&gt;&lt;br /&gt;For Example&amp;#58;&lt;br /&gt;var sample &amp;#61; JSLINQ&amp;#40;Samples.People&amp;#41;&lt;br /&gt;    .OrderBy&amp;#40;&amp;#34;item &amp;#61;&amp;#62; item.FirstName&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;</description><author>crpietschmann</author><pubDate>Thu, 18 Jun 2009 22:00:30 GMT</pubDate><guid isPermaLink="false">Created Feature: Make all methods access "C#-like Lambda Expressions" where applicable 20090618100030P</guid></item><item><title>Closed Issue: Modify "OrderBy" and "OrderByDescending" to access "C#-like Lambda" expressions also.</title><link>http://jslinq.codeplex.com/WorkItem/View.aspx?WorkItemId=4210</link><description>Modify &amp;#34;OrderBy&amp;#34; and &amp;#34;OrderByDescending&amp;#34; to access &amp;#34;C&amp;#35;-like Lambda&amp;#34; expressions also.&lt;br /&gt;    var sample &amp;#61; JSLINQ&amp;#40;Samples.People&amp;#41;&lt;br /&gt;        .OrderBy&amp;#40;&amp;#34;item &amp;#61;&amp;#62; item.FirstName&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;Comments: &lt;p&gt;Done&lt;/p&gt;</description><author>crpietschmann</author><pubDate>Thu, 18 Jun 2009 21:59:07 GMT</pubDate><guid isPermaLink="false">Closed Issue: Modify "OrderBy" and "OrderByDescending" to access "C#-like Lambda" expressions also. 20090618095907P</guid></item><item><title>Created Issue: Modify "OrderBy" and "OrderByDescending" to access "C#-like Lambda" expressions also.</title><link>http://jslinq.codeplex.com/WorkItem/View.aspx?WorkItemId=4210</link><description>Modify &amp;#34;OrderBy&amp;#34; and &amp;#34;OrderByDescending&amp;#34; to access &amp;#34;C&amp;#35;-like Lambda&amp;#34; expressions also.&lt;br /&gt;    var sample &amp;#61; JSLINQ&amp;#40;Samples.People&amp;#41;&lt;br /&gt;        .OrderBy&amp;#40;&amp;#34;item &amp;#61;&amp;#62; item.FirstName&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;</description><author>crpietschmann</author><pubDate>Thu, 18 Jun 2009 21:58:32 GMT</pubDate><guid isPermaLink="false">Created Issue: Modify "OrderBy" and "OrderByDescending" to access "C#-like Lambda" expressions also. 20090618095832P</guid></item><item><title>Closed Issue: Modify "OrderByDescending" to accept the field/property to order by as a string in addition to accepting a "clause function"/lambda expression.</title><link>http://jslinq.codeplex.com/WorkItem/View.aspx?WorkItemId=4207</link><description>Modify &amp;#34;OrderByDescending&amp;#34; to accept the field&amp;#47;property to order by as a string in addition to accepting a &amp;#34;clause function&amp;#34;&amp;#47;lambda expression.&lt;br /&gt;&lt;br /&gt;var sample &amp;#61; JSLINQ&amp;#40;Samples.People&amp;#41;&lt;br /&gt;    .OrderByDescending&amp;#40;&amp;#34;FirstName&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;Comments: &lt;p&gt;Done&lt;/p&gt;</description><author>crpietschmann</author><pubDate>Thu, 18 Jun 2009 21:24:19 GMT</pubDate><guid isPermaLink="false">Closed Issue: Modify "OrderByDescending" to accept the field/property to order by as a string in addition to accepting a "clause function"/lambda expression. 20090618092419P</guid></item><item><title>Created Issue: Modify "OrderByDescending" to accept the field/property to order by as a string in addition to accepting a "clause function"/lambda expression.</title><link>http://jslinq.codeplex.com/WorkItem/View.aspx?WorkItemId=4207</link><description>Modify &amp;#34;OrderByDescending&amp;#34; to accept the field&amp;#47;property to order by as a string in addition to accepting a &amp;#34;clause function&amp;#34;&amp;#47;lambda expression.&lt;br /&gt;&lt;br /&gt;var sample &amp;#61; JSLINQ&amp;#40;Samples.People&amp;#41;&lt;br /&gt;    .OrderByDescending&amp;#40;&amp;#34;FirstName&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;</description><author>crpietschmann</author><pubDate>Thu, 18 Jun 2009 21:23:54 GMT</pubDate><guid isPermaLink="false">Created Issue: Modify "OrderByDescending" to accept the field/property to order by as a string in addition to accepting a "clause function"/lambda expression. 20090618092354P</guid></item><item><title>Closed Issue: Modify "Select" to accept a single field/property to select by passing it in as a string.</title><link>http://jslinq.codeplex.com/WorkItem/View.aspx?WorkItemId=4206</link><description>Modify &amp;#34;Select&amp;#34; to accept a single field&amp;#47;property to select by passing it in as a string.&lt;br /&gt;&lt;br /&gt;Example&amp;#58;&lt;br /&gt;var sample &amp;#61; JSLINQ&amp;#40;Samples.People&amp;#41;&lt;br /&gt;.Select&amp;#40;&amp;#34;FirstName&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;Comments: &lt;p&gt;Done&lt;/p&gt;</description><author>crpietschmann</author><pubDate>Thu, 18 Jun 2009 21:10:04 GMT</pubDate><guid isPermaLink="false">Closed Issue: Modify "Select" to accept a single field/property to select by passing it in as a string. 20090618091004P</guid></item><item><title>Created Issue: Modify "Select" to accept a single field/property to select by passing it in as a string.</title><link>http://jslinq.codeplex.com/WorkItem/View.aspx?WorkItemId=4206</link><description>Modify &amp;#34;Select&amp;#34; to accept a single field&amp;#47;property to select by passing it in as a string.&lt;br /&gt;&lt;br /&gt;Example&amp;#58;&lt;br /&gt;var sample &amp;#61; JSLINQ&amp;#40;Samples.People&amp;#41;&lt;br /&gt;.Select&amp;#40;&amp;#34;FirstName&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;</description><author>crpietschmann</author><pubDate>Thu, 18 Jun 2009 21:06:09 GMT</pubDate><guid isPermaLink="false">Created Issue: Modify "Select" to accept a single field/property to select by passing it in as a string. 20090618090609P</guid></item></channel></rss>