<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="http://www.codeplex.com/rss.xsl"?><rss version="2.0"><channel><title>JSLINQ Forum Rss Feed</title><link>http://www.codeplex.com/JSLINQ/Thread/List.aspx</link><description>JSLINQ Forum Rss Description</description><item><title>New Post: Select calls clause function twice</title><link>http://jslinq.codeplex.com/Thread/View.aspx?ThreadId=55854</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Thanks. This has been fixed.&lt;/p&gt;&lt;/div&gt;</description><author>crpietschmann</author><pubDate>Tue, 16 Jun 2009 23:06:34 GMT</pubDate><guid isPermaLink="false">New Post: Select calls clause function twice 20090616110634P</guid></item><item><title>New Post: A Better Query Tool Than jQuery?</title><link>http://jslinq.codeplex.com/Thread/View.aspx?ThreadId=20980</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I just added (in v2.10) a plugin model to JSLINQ that is similar to JQuery via adding methods to &amp;quot;JSLINQ.fn&amp;quot;. If you are interested in adding your own plugins to JSLINQ, there is a simple example located within the release download.&lt;/p&gt;&lt;/div&gt;</description><author>crpietschmann</author><pubDate>Tue, 16 Jun 2009 22:59:02 GMT</pubDate><guid isPermaLink="false">New Post: A Better Query Tool Than jQuery? 20090616105902P</guid></item><item><title>New Post: Select calls clause function twice</title><link>http://jslinq.codeplex.com/Thread/View.aspx?ThreadId=55854</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Out of curiosity, in the Select method, why not call the clause function once, then if the result evaluates to true, add it to the array? This would roughly double performance of select.&lt;/p&gt;
&lt;p&gt;So, from:&lt;/p&gt;
&lt;p&gt;for (var i = 0; i &amp;lt; this.items.length; i++) {&lt;br&gt;&amp;nbsp; if (clause(this.items[i])) {&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; newArray[newArray.length] = clause(this.items[i]);&lt;br&gt;&amp;nbsp; }&lt;br&gt;}&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;To this:&lt;/p&gt;
&lt;p&gt;for (var i = 0; i &amp;lt; this.items.length; i++) {&lt;/p&gt;
&lt;p&gt;&amp;nbsp; var result = clause(this.items[i]);&lt;br&gt; &amp;nbsp; if (result)&lt;br&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; newArray[newArray.length] = result;&lt;br&gt;}&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;-- Curtis&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/div&gt;</description><author>cshipley</author><pubDate>Sun, 10 May 2009 16:10:00 GMT</pubDate><guid isPermaLink="false">New Post: Select calls clause function twice 20090510041000P</guid></item><item><title>New Post: JSLINQ better approach</title><link>http://jslinq.codeplex.com/Thread/View.aspx?ThreadId=41842</link><description>&lt;div style="line-height: normal;"&gt;I would be interested in seeing the code you wrote if you're willing to share it. Please post it somewhere and post a link here. Thanks.&lt;br&gt;
&lt;/div&gt;</description><author>crpietschmann</author><pubDate>Mon, 30 Mar 2009 22:03:38 GMT</pubDate><guid isPermaLink="false">New Post: JSLINQ better approach 20090330100338P</guid></item><item><title>New Post: JSLINQ better approach</title><link>http://www.codeplex.com/JSLINQ/Thread/View.aspx?ThreadId=41842</link><description>&lt;div style="line-height: normal;"&gt;Hello. I think I have a much better approach about how to implement a LINQ-like library in javascript. First of all, remember that you must define functions to give the option for joining multiple arrays. (inner join, left join, right join). I just started coding my library, and after I wrote more then 80K of code i found your library on codeplex. But I AM SURE that my library is far more better than yours. I use lambda expressions, FULL LINQ-like syntax, I have &amp;quot;groupping&amp;quot;, &amp;quot;having&amp;quot;, &amp;quot;Inner/Left/Right JOIN&amp;quot;, etc :) If anybody is interested about my library you can write to me at aurelian.lica (at) gmail.com
&lt;/div&gt;</description><author>galsoftware</author><pubDate>Tue, 09 Dec 2008 08:51:42 GMT</pubDate><guid isPermaLink="false">New Post: JSLINQ better approach 20081209085142A</guid></item><item><title>New Post: JSLINQ and LIKE Operation?</title><link>http://www.codeplex.com/JSLINQ/Thread/View.aspx?ThreadId=30253</link><description>&lt;div style="line-height: normal;"&gt;JSLINQ doesn't include a LIKE operator since that is really something that needs to be done within the Where method anyway. In order to perform a LIKE operation, you'll need to place the logic for it within the clause (or closure) that you pass the Where method.&lt;br&gt;
&lt;/div&gt;</description><author>crpietschmann</author><pubDate>Wed, 15 Oct 2008 06:02:10 GMT</pubDate><guid isPermaLink="false">New Post: JSLINQ and LIKE Operation? 20081015060210A</guid></item><item><title>New Post: No client side dependency</title><link>http://www.codeplex.com/JSLINQ/Thread/View.aspx?ThreadId=33285</link><description>&lt;div style="line-height: normal;"&gt;JSLINQ.js is completely self contained. It requires no other JavaScript Frameworks on the client, and works cross-browser. Also since it is a JavaScript library, it does not have any dependence on the .NET Framework.&lt;br&gt;
&lt;/div&gt;</description><author>crpietschmann</author><pubDate>Wed, 15 Oct 2008 05:57:46 GMT</pubDate><guid isPermaLink="false">New Post: No client side dependency 20081015055746A</guid></item><item><title>New Post: No client side dependency</title><link>http://www.codeplex.com/JSLINQ/Thread/View.aspx?ThreadId=33285</link><description>&lt;div style="line-height: normal;"&gt;does JSLINQ.js have any client side dependency to dotnet framework being present on the client machine ? I am quite hopeful it does not , this just to clarify.&lt;br&gt;
Thanks for taking a read into this.
&lt;/div&gt;</description><author>dc</author><pubDate>Mon, 11 Aug 2008 10:09:20 GMT</pubDate><guid isPermaLink="false">New Post: No client side dependency 20080811100920A</guid></item><item><title>New Post: JSLINQ and LIKE Operation?</title><link>http://www.codeplex.com/JSLINQ/Thread/View.aspx?ThreadId=30253</link><description>&lt;div style="line-height: normal;"&gt;Did JSLINQ support 'Like' operation? if yes can anyone give any idea how to use it?&lt;br&gt;
&lt;/div&gt;</description><author>shoaibshaikh</author><pubDate>Wed, 25 Jun 2008 12:53:16 GMT</pubDate><guid isPermaLink="false">New Post: JSLINQ and LIKE Operation? 20080625125316P</guid></item><item><title>NEW POST: A Better Query Tool Than jQuery?</title><link>http://www.codeplex.com/JSLINQ/Thread/View.aspx?ThreadId=20980</link><description>&lt;div class="wikidoc"&gt;
If you have any ideas for functionality for JSLINQ, feel free to submit them to the Issue Tracker; along with any code demonstrating them. And, if they make sense for the scope of this project, I'll incorporate them into the project.&lt;br /&gt; &lt;br /&gt;Currently, CodePlex is the only home page for this project, I'm thinking about creating a site dedicated to it. It is a great idea to create a section where others can post JSLINQ Extensions. I just created an Extensions tag in the Discussion forums, so just post any code for Extensions there for the time being. If it becomes popular enough with people posting their own JSLINQ extensions I'll create an Extensions section on the projects website, once I create it.&lt;br /&gt; &lt;br /&gt;Thanks for the suggestions!&lt;br /&gt;
&lt;/div&gt;</description><author>crpietschmann</author><pubDate>Sat, 26 Jan 2008 04:24:04 GMT</pubDate><guid isPermaLink="false">NEW POST: A Better Query Tool Than jQuery? 20080126042404A</guid></item><item><title>NEW POST: Script and LINQ</title><link>http://www.codeplex.com/JSLINQ/Thread/View.aspx?ThreadId=21008</link><description>&lt;div class="wikidoc"&gt;
Nice - Just thought I'd post a link to a post I did a while back demonstrating LINQ concepts in script - http://www.nikhilk.net/ScriptAndLINQ.aspx.&lt;br /&gt;Also, script# supports these APIs as well, as mentioned in the post.&lt;br /&gt;
&lt;/div&gt;</description><author>NikhilK</author><pubDate>Fri, 25 Jan 2008 08:14:48 GMT</pubDate><guid isPermaLink="false">NEW POST: Script and LINQ 20080125081448A</guid></item><item><title>NEW POST: A Better Query Tool Than jQuery?</title><link>http://www.codeplex.com/JSLINQ/Thread/View.aspx?ThreadId=20980</link><description>&lt;div class="wikidoc"&gt;
JSLINQ is a really interesting idea, by the way.&lt;br /&gt;
&lt;/div&gt;</description><author>stimpy77</author><pubDate>Thu, 24 Jan 2008 22:27:04 GMT</pubDate><guid isPermaLink="false">NEW POST: A Better Query Tool Than jQuery? 20080124102704P</guid></item><item><title>NEW POST: A Better Query Tool Than jQuery?</title><link>http://www.codeplex.com/JSLINQ/Thread/View.aspx?ThreadId=20980</link><description>&lt;div class="wikidoc"&gt;
I take it this can run in the browser (Firefox, Opera, etc).&lt;br /&gt; &lt;br /&gt;Is it inherently extensible like jQuery is? jQuery's extensibility seems to be more of a service than a feature since Javascript objects are all extensible; is there a home page for JSLINQ where jQuery-like extensions can be featured?&lt;br /&gt; &lt;br /&gt;For that matter, what about appending jQuery object with JSLINQ's object definition so that jQuery extensions &amp;quot;just work&amp;quot; with JSLINQ? :D&lt;br /&gt;
&lt;/div&gt;</description><author>stimpy77</author><pubDate>Thu, 24 Jan 2008 22:23:17 GMT</pubDate><guid isPermaLink="false">NEW POST: A Better Query Tool Than jQuery? 20080124102317P</guid></item></channel></rss>