<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>linqjs Discussions Rss Feed</title><link>http://linqjs.codeplex.com/Thread/List.aspx</link><description>linqjs Discussions Rss Description</description><item><title>New Post: Cascading Enumerables</title><link>http://linqjs.codeplex.com/discussions/443218</link><description>&lt;div style="line-height: normal;"&gt;Found this issue. &lt;br /&gt;
put e.cells into $() and all working.&lt;br /&gt;
$.Enumerable.From($(e.cells)).ForEach(function(a){})&lt;br /&gt;
&lt;/div&gt;</description><author>brad55590</author><pubDate>Fri, 10 May 2013 10:25:18 GMT</pubDate><guid isPermaLink="false">New Post: Cascading Enumerables 20130510102518A</guid></item><item><title>New Post: Cascading Enumerables</title><link>http://linqjs.codeplex.com/discussions/443218</link><description>&lt;div style="line-height: normal;"&gt;Hi Guys&lt;br /&gt;
&lt;br /&gt;
Please could someone help me with the following. I have a table that i want to itterate through and display all the text inside certain span tags.&lt;br /&gt;
&lt;br /&gt;
The below example is a basic example of what i want to do. Also this works fine in IE, Chrome and Firefox, But Safari returns Undefined.&lt;br /&gt;
&lt;br /&gt;
I have been able to find that the &amp;quot;enumerable.from(c.cells).foreach&amp;quot; is where the problem is.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;body&amp;gt;&lt;br /&gt;
&amp;lt;table id=&amp;quot;tableone&amp;quot;&amp;gt;
  &amp;lt;tr id=&amp;quot;rowTest&amp;quot;&amp;gt;
	&amp;lt;td id=&amp;quot;test&amp;quot;&amp;gt;
	&amp;lt;span id=&amp;quot;thisname&amp;quot;&amp;gt;&amp;lt;span id=&amp;quot;1fName&amp;quot;&amp;gt;TR 1 TD 1&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;
	
	&amp;lt;/td&amp;gt;
	&amp;lt;td&amp;gt;&amp;lt;span id=&amp;quot;thisperson&amp;quot;&amp;gt;TR 1 TD 2&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;
  &amp;lt;/tr&amp;gt;
  &amp;lt;tr id=&amp;quot;&amp;quot;&amp;gt;
	&amp;lt;td id=&amp;quot;test&amp;quot;&amp;gt;
	&amp;lt;span id=&amp;quot;thisname&amp;quot;&amp;gt;&amp;lt;span id=&amp;quot;2fName&amp;quot;&amp;gt;R 2 TD 1&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;
	&amp;lt;/td&amp;gt;
	&amp;lt;td&amp;gt;&amp;lt;span id=&amp;quot;thisperson&amp;quot;&amp;gt;TR 2 TD 2&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;
  &amp;lt;/tr&amp;gt;
  &amp;lt;/table&amp;gt;
&amp;lt;script&amp;gt; 
$.Enumerable.From($('#tableone tr')).Where('$.id != &amp;quot;&amp;quot;').ForEach(function(e){
	
	$.Enumerable.From(e.cells).ForEach(function(a){	
&amp;lt;!--$(a) is where my problem is.--&amp;gt;
		alert($(a).find('span[id*=fName]').html());
	});

});
 
&amp;lt;/script&amp;gt;
&amp;lt;/body&amp;gt;&lt;br /&gt;
&lt;/div&gt;</description><author>brad55590</author><pubDate>Fri, 10 May 2013 09:13:59 GMT</pubDate><guid isPermaLink="false">New Post: Cascading Enumerables 20130510091359A</guid></item><item><title>New Post: GroupBy and ForEach</title><link>http://linqjs.codeplex.com/discussions/442866</link><description>&lt;div style="line-height: normal;"&gt;hi&lt;br /&gt;
&lt;br /&gt;
thanks, works perfect&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
greetings&lt;br /&gt;
&lt;/div&gt;</description><author>leandro1979</author><pubDate>Thu, 09 May 2013 14:42:58 GMT</pubDate><guid isPermaLink="false">New Post: GroupBy and ForEach 20130509024258P</guid></item><item><title>New Post: GroupBy and ForEach</title><link>http://linqjs.codeplex.com/discussions/442866</link><description>&lt;div style="line-height: normal;"&gt;GroupBy has three arguments.&lt;br /&gt;
&lt;br /&gt;
for example&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;// keySelector, elementSelector, resultSelector
// group is Enumerable
Enumerable.From(resultArray)
    .GroupBy(&amp;quot;$.sucursal&amp;quot;, &amp;quot;&amp;quot;, function (key, group) { return { sucu: key, group: group } })
    .ForEach(function (x) { alert(x.sucu + ' ' + x.group.Select(&amp;quot;$.name&amp;quot;).ToString(&amp;quot;,&amp;quot;)) });&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;</description><author>neuecc</author><pubDate>Wed, 08 May 2013 06:47:53 GMT</pubDate><guid isPermaLink="false">New Post: GroupBy and ForEach 20130508064753A</guid></item><item><title>New Post: .Where() problems when used with numbers.</title><link>http://linqjs.codeplex.com/discussions/439234</link><description>&lt;div style="line-height: normal;"&gt;You should use this statement&lt;br /&gt;
&lt;br /&gt;
var queryText = Enumerable.From(jsonArray).Where(&amp;quot;$.text == 'g'&amp;quot;).ToArray(); &lt;br /&gt;
var queryId = Enumerable.From(jsonArray).Where(&amp;quot;$.user.id == '135'&amp;quot;).ToArray();&lt;br /&gt;
&lt;/div&gt;</description><author>lxp270</author><pubDate>Wed, 08 May 2013 02:57:14 GMT</pubDate><guid isPermaLink="false">New Post: .Where() problems when used with numbers. 20130508025714A</guid></item><item><title>New Post: GroupBy - General info</title><link>http://linqjs.codeplex.com/discussions/442894</link><description>&lt;div style="line-height: normal;"&gt;Hi&lt;br /&gt;
&lt;br /&gt;
I am trying to understand the GroupBy, but the documentation is little&lt;br /&gt;
&lt;br /&gt;
has  somebody some example about GroupBy ?&lt;br /&gt;
&lt;hr /&gt;
in the example, I can see:&lt;br /&gt;
.GroupBy(&amp;quot;$.Date&amp;quot;, &amp;quot;$.Id&amp;quot;, .....&lt;br /&gt;
&lt;br /&gt;
why two parameters ? if only need group by date, which is the $.Id functionality ?&lt;br /&gt;
&lt;br /&gt;
greetings&lt;br /&gt;
&lt;/div&gt;</description><author>leandro1979</author><pubDate>Wed, 08 May 2013 02:37:52 GMT</pubDate><guid isPermaLink="false">New Post: GroupBy - General info 20130508023752A</guid></item><item><title>New Post: Join issue</title><link>http://linqjs.codeplex.com/discussions/442777</link><description>&lt;div style="line-height: normal;"&gt;Thank you very much，I understand，Linq.js is very good！&lt;br /&gt;
&lt;/div&gt;</description><author>lxp270</author><pubDate>Wed, 08 May 2013 01:52:03 GMT</pubDate><guid isPermaLink="false">New Post: Join issue 20130508015203A</guid></item><item><title>New Post: GroupBy and ForEach</title><link>http://linqjs.codeplex.com/discussions/442866</link><description>&lt;div style="line-height: normal;"&gt;Hi&lt;br /&gt;
&lt;br /&gt;
I need use GroupBy, I am processing crm data&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;function GetArrayFromFetchResults(fetchResults) {

    var entityResults = new Array();

    var entityElems = fetchResults.getElementsByTagName(&amp;quot;a:Entity&amp;quot;);

    for (var i = 0; i &amp;lt; entityElems.length; i++) {

        entityResults[i] = new Object();
        
        entityResults[i].id = GetFieldValue(entityElems[i], &amp;quot;accountid&amp;quot;);
        entityResults[i].name = GetFieldValue(entityElems[i], &amp;quot;name&amp;quot;);

        entityResults[i].latitude = GetFieldValue(entityElems[i], &amp;quot;address1_latitude&amp;quot;);
        entityResults[i].longitude = GetFieldValue(entityElems[i], &amp;quot;address1_longitude&amp;quot;);

        entityResults[i].zona = GetFieldValue(entityElems[i], &amp;quot;new_zona&amp;quot;);
        entityResults[i].sucursal = GetFieldValue(entityElems[i], &amp;quot;new_sucursalprincipal&amp;quot;);
        entityResults[i].vendedor = GetFieldValue(entityElems[i], &amp;quot;new_vendedorasigandoid&amp;quot;);

    }
   
    return entityResults;
}&lt;/code&gt;&lt;/pre&gt;

I need group result by &amp;quot;sucursal&amp;quot;, end then use the ForEach(), but I don´t find the correct parameters&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;var resultArray = GetArrayFromFetchResults(resultCRM);

Enumerable.From(resultArray)
                                .GroupBy(&amp;quot;$.sucursal&amp;quot;,
                                    function(key, group) { return { sucu: key, grupo: group} })
                                .ForEach(alert($.sucu + ' ' + $.grupo));&lt;/code&gt;&lt;/pre&gt;

greetings&lt;br /&gt;
&lt;/div&gt;</description><author>leandro1979</author><pubDate>Tue, 07 May 2013 20:53:56 GMT</pubDate><guid isPermaLink="false">New Post: GroupBy and ForEach 20130507085356P</guid></item><item><title>New Post: Join issue</title><link>http://linqjs.codeplex.com/discussions/442777</link><description>&lt;div style="line-height: normal;"&gt;Is your query syntax right?&lt;br /&gt;
It looks need &amp;quot;into&amp;quot; keyword.&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;// query syntax
var table = from c in ctx.Users
            join p in ctx.Structure on c.StructureID equals p.StructureID.ToString()
            select c into c
            where c.UserID &amp;lt; 276234
            select c;

// method syntax
var table2 = ctx.Users.Join(ctx.Structure, c =&amp;gt; c.StructureID, p =&amp;gt; p.StructureID.ToString(), (c, p) =&amp;gt; c)
    .Where(c =&amp;gt; c.UserID &amp;lt; 276234);

// linq.js
var table = ctx.Users.Join(ctx.Structure, &amp;quot;$.StructureID&amp;quot;, &amp;quot;$.StructureID.toString()&amp;quot;)
    .Where(&amp;quot;$.UserID &amp;lt; 276234&amp;quot;);&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;</description><author>neuecc</author><pubDate>Tue, 07 May 2013 08:52:38 GMT</pubDate><guid isPermaLink="false">New Post: Join issue 20130507085238A</guid></item><item><title>New Post: Join issue</title><link>http://linqjs.codeplex.com/discussions/442777</link><description>&lt;div style="line-height: normal;"&gt;I what use Join in Linq.js, Is Different with C#?&lt;br /&gt;
&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
&lt;span style="color:Blue;"&gt;var&lt;/span&gt; table = &lt;span style="color:Blue;"&gt;from&lt;/span&gt; c &lt;span style="color:Blue;"&gt;in&lt;/span&gt; ctx.Users
                 &lt;span style="color:Blue;"&gt;join&lt;/span&gt; p &lt;span style="color:Blue;"&gt;in&lt;/span&gt; ctx.Structure
                 &lt;span style="color:Blue;"&gt;on&lt;/span&gt; c.StructureID &lt;span style="color:Blue;"&gt;equals&lt;/span&gt; p.StructureID.ToString()
                 &lt;span style="color:Blue;"&gt;where&lt;/span&gt; c.UserID &amp;lt; 276234
                 &lt;span style="color:Blue;"&gt;select&lt;/span&gt; c;
&lt;/pre&gt;&lt;/div&gt;What can I do using linq.js achieve the above functions,it's two tables join by foreign key(ID)&lt;br /&gt;
&lt;/div&gt;</description><author>lxp270</author><pubDate>Tue, 07 May 2013 07:41:53 GMT</pubDate><guid isPermaLink="false">New Post: Join issue 20130507074153A</guid></item><item><title>New Post: Group By</title><link>http://linqjs.codeplex.com/discussions/441576</link><description>&lt;div style="line-height: normal;"&gt;result of GroupBy have to keep immutable.&lt;br /&gt;
source property intend to private field.&lt;br /&gt;
linq.js ver.3 changed Key() -&amp;gt; key() and  source -&amp;gt; getSource()&lt;br /&gt;
(and getSource is private but practically public)&lt;br /&gt;
&lt;/div&gt;</description><author>neuecc</author><pubDate>Mon, 29 Apr 2013 14:51:11 GMT</pubDate><guid isPermaLink="false">New Post: Group By 20130429025111P</guid></item><item><title>New Post: Group By</title><link>http://linqjs.codeplex.com/discussions/441576</link><description>&lt;div style="line-height: normal;"&gt;I find the Linq.js &lt;code&gt;GroupBy&lt;/code&gt; a little confusing. What is the reason for the &lt;code&gt;Key&lt;/code&gt; property on the result of a &lt;code&gt;GroupBy&lt;/code&gt; being a function that returns the key, rather than the key itself?&lt;br /&gt;
&lt;br /&gt;
Also, why does the &lt;code&gt;GroupBy&lt;/code&gt; result have a &lt;code&gt;source&lt;/code&gt; property (notice the difference in casing) rather than something like &lt;code&gt;Values&lt;/code&gt;?&lt;br /&gt;
&lt;br /&gt;
Thanks.&lt;br /&gt;
&lt;/div&gt;</description><author>MgSam</author><pubDate>Thu, 25 Apr 2013 16:05:15 GMT</pubDate><guid isPermaLink="false">New Post: Group By 20130425040515P</guid></item><item><title>New Post: How to query this XML.</title><link>http://linqjs.codeplex.com/discussions/440351</link><description>&lt;div style="line-height: normal;"&gt;Hello, &lt;br /&gt;
&lt;br /&gt;
I was looking the documentation about linq.js and i saw you're implementing a way to query xml. I want to know if currently is there a way to query this XML.&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;s:Envelope xmlns:s=&amp;quot;http://schemas.xmlsoap.org/soap/envelope/&amp;quot;&amp;gt;
  &amp;lt;s:Body&amp;gt;
    &amp;lt;GetUserResponse xmlns=&amp;quot;http://tempuri.org/&amp;quot;&amp;gt;
      &amp;lt;GetUserResult xmlns:a=&amp;quot;http://schemas.data contract.org/2004/07/Service&amp;quot; xmlns:i=&amp;quot;http://www.w3.org/2001/XMLSchema-instance&amp;quot;&amp;gt;
        &amp;lt;a:id&amp;gt;1&amp;lt;/a:id&amp;gt;
        &amp;lt;a:nombre&amp;gt;George&amp;lt;/a:nombre&amp;gt;
        &amp;lt;a:direccion&amp;gt;Address&amp;lt;/a:direccion&amp;gt;
        &amp;lt;a:email&amp;gt;Email&amp;lt;/a:email&amp;gt;
      &amp;lt;/GetUserResult&amp;gt;
     &amp;lt;/GetUserResponse&amp;gt;
  &amp;lt;/s:Body&amp;gt;
&amp;lt;/s:Envelope&amp;gt;&lt;/code&gt;&lt;/pre&gt;

Note: I am getting this XML inside a string variable.&lt;br /&gt;
&lt;br /&gt;
As you can see, the SOAP XML returns 4 properties: &amp;lt;a:id&amp;gt; &amp;lt;a:nombre&amp;gt; &amp;lt;a:direccion&amp;gt; &amp;lt;a:email&amp;gt;, I want to get the values inside each property.&lt;br /&gt;
&lt;br /&gt;
Thank you.&lt;br /&gt;
&lt;/div&gt;</description><author>raptor_ttk</author><pubDate>Mon, 15 Apr 2013 16:44:46 GMT</pubDate><guid isPermaLink="false">New Post: How to query this XML. 20130415044446P</guid></item><item><title>New Post: Linq.js project dead?</title><link>http://linqjs.codeplex.com/discussions/440057</link><description>&lt;div style="line-height: normal;"&gt;I'm sorry.&lt;br /&gt;
I must apologize to everybody.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;dead&amp;quot; is no.&lt;br /&gt;
But, ..., I must show progress.&lt;br /&gt;
Please watch it.&lt;br /&gt;
&lt;/div&gt;</description><author>neuecc</author><pubDate>Mon, 15 Apr 2013 02:18:18 GMT</pubDate><guid isPermaLink="false">New Post: Linq.js project dead? 20130415021818A</guid></item><item><title>New Post: Linq.js project dead?</title><link>http://linqjs.codeplex.com/discussions/440057</link><description>&lt;div style="line-height: normal;"&gt;I've been happily using Linq.js v2 in a previous project. We are now in the process of starting a new project, and I'm considering using it again. I'm looking forward to the v3 which seem to align itself more with javascript naming conventions. What worries me is that there seem to be very little activity on this project. Last checkin on the v3 branch was Oct 09, 2012. &lt;br /&gt;
&lt;br /&gt;
Is it still alive and being developed, and can we expect v3 released any time soon?&lt;br /&gt;
&lt;/div&gt;</description><author>andhaug</author><pubDate>Fri, 12 Apr 2013 12:28:55 GMT</pubDate><guid isPermaLink="false">New Post: Linq.js project dead? 20130412122855P</guid></item><item><title>New Post: How can I query this? </title><link>http://linqjs.codeplex.com/discussions/439318</link><description>&lt;div style="line-height: normal;"&gt;I want to write a linq js statement&lt;br /&gt;
find this observable object (knockoutjs) &lt;br /&gt;
 where  object has isValid function and its value = true&lt;br /&gt;
&lt;img src="http://s21.postimg.org/6neon8k07/Help_Me.png" alt="Image" /&gt;&lt;br /&gt;
&lt;br /&gt;
and what I want to select is &amp;quot;origin&amp;quot;  and &amp;quot;portcode&amp;quot;&lt;br /&gt;
&lt;/div&gt;</description><author>artsai</author><pubDate>Sat, 06 Apr 2013 00:44:50 GMT</pubDate><guid isPermaLink="false">New Post: How can I query this?  20130406124450A</guid></item><item><title>New Post: .Where() problems when used with numbers.</title><link>http://linqjs.codeplex.com/discussions/439234</link><description>&lt;div style="line-height: normal;"&gt;Consider the same json array..&lt;br /&gt;
&lt;br /&gt;
var jsonArray = [&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;{ &amp;quot;user&amp;quot;: { &amp;quot;id&amp;quot;: 100, &amp;quot;screen_name&amp;quot;: &amp;quot;d_linq&amp;quot; }, &amp;quot;text&amp;quot;: &amp;quot;to objects&amp;quot; },
{ &amp;quot;user&amp;quot;: { &amp;quot;id&amp;quot;: 130, &amp;quot;screen_name&amp;quot;: &amp;quot;c_bill&amp;quot; }, &amp;quot;text&amp;quot;: &amp;quot;g&amp;quot; },
{ &amp;quot;user&amp;quot;: { &amp;quot;id&amp;quot;: 155, &amp;quot;screen_name&amp;quot;: &amp;quot;b_mskk&amp;quot; }, &amp;quot;text&amp;quot;: &amp;quot;kabushiki kaisha&amp;quot; },
{ &amp;quot;user&amp;quot;: { &amp;quot;id&amp;quot;: 301, &amp;quot;screen_name&amp;quot;: &amp;quot;a_xbox&amp;quot; }, &amp;quot;text&amp;quot;: &amp;quot;halo reach&amp;quot; }&lt;/code&gt;&lt;/pre&gt;

]&lt;br /&gt;
&lt;br /&gt;
var queryResult = Enumerable.From(jsonArray).Where(&amp;quot;$.user.text == 'g'&amp;quot;).ToArray();&lt;br /&gt;
&lt;br /&gt;
if i use above statement on 'text' field, it works perfectly fine.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
var queryResult = Enumerable.From(jsonArray).Where(&amp;quot;$.user.id == 100&amp;quot;).ToArray();&lt;br /&gt;
&lt;br /&gt;
but when i try to use above statement on 'id' field, it does not filter the result accordingly, instead it returns complete json array.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I also tried converting integers from json array to strings as shown below bu it did not help either.&lt;br /&gt;
&lt;br /&gt;
var jsonArray = [&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;            { &amp;quot;user&amp;quot;: { &amp;quot;id&amp;quot;: &amp;quot;100&amp;quot;, &amp;quot;screen_name&amp;quot;: &amp;quot;d_linq&amp;quot; }, &amp;quot;text&amp;quot;: &amp;quot;to objects&amp;quot; },
            { &amp;quot;user&amp;quot;: { &amp;quot;id&amp;quot;: &amp;quot;100&amp;quot;, &amp;quot;screen_name&amp;quot;: &amp;quot;c_bill&amp;quot; }, &amp;quot;text&amp;quot;: &amp;quot;g&amp;quot; },
            { &amp;quot;user&amp;quot;: { &amp;quot;id&amp;quot;: &amp;quot;155&amp;quot;, &amp;quot;screen_name&amp;quot;: &amp;quot;b_mskk&amp;quot; }, &amp;quot;text&amp;quot;: &amp;quot;kabushiki kaisha&amp;quot; },
            { &amp;quot;user&amp;quot;: { &amp;quot;id&amp;quot;: &amp;quot;301&amp;quot;, &amp;quot;screen_name&amp;quot;: &amp;quot;a_xbox&amp;quot; }, &amp;quot;text&amp;quot;: &amp;quot;halo reach&amp;quot; }
        ]
&lt;/code&gt;&lt;/pre&gt;

I tried using '=' , '==' and putting single quotes, etc etc in lambda equations but no luck.&lt;br /&gt;
&lt;br /&gt;
It works perfectly fine for strings with alphabets and not for numbers.&lt;br /&gt;
&lt;br /&gt;
Please help me.&lt;br /&gt;
&lt;/div&gt;</description><author>rrsavadikar</author><pubDate>Fri, 05 Apr 2013 12:26:03 GMT</pubDate><guid isPermaLink="false">New Post: .Where() problems when used with numbers. 20130405122603P</guid></item><item><title>New Post: Starting linq.js ver.3.0.0(currently beta)</title><link>http://linqjs.codeplex.com/discussions/376207</link><description>&lt;div style="line-height: normal;"&gt;Thanks for your AMAZING JOB create this library. I agree to change function names to lowercase. But I'm not gonna using 3.0 in my project cause lot of codes are using UpperCase. So will you consider to make a back compability adapter library like jQuery-Migrate.js? I thinks those are just a little alias-name work.&lt;br /&gt;
&lt;br /&gt;
What do you think?&lt;br /&gt;
&lt;/div&gt;</description><author>booolean</author><pubDate>Fri, 08 Mar 2013 08:12:59 GMT</pubDate><guid isPermaLink="false">New Post: Starting linq.js ver.3.0.0(currently beta) 20130308081259A</guid></item><item><title>New Post: How to work linq.js with knockout js</title><link>http://linqjs.codeplex.com/discussions/434298</link><description>&lt;div style="line-height: normal;"&gt;i need to work your library with knockout js. there is any compatibility pack?&lt;br /&gt;
&lt;/div&gt;</description><author>vimalprakashts</author><pubDate>Sun, 24 Feb 2013 13:23:41 GMT</pubDate><guid isPermaLink="false">New Post: How to work linq.js with knockout js 20130224012341P</guid></item><item><title>New Post: Join syntax for two arrays of objects</title><link>http://linqjs.codeplex.com/discussions/395492</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hello,&lt;br /&gt;
Please please tell me a sample of the GroupJoin. (at same array objects)&lt;/p&gt;
&lt;/div&gt;</description><author>linqjslove</author><pubDate>Thu, 31 Jan 2013 10:48:47 GMT</pubDate><guid isPermaLink="false">New Post: Join syntax for two arrays of objects 20130131104847A</guid></item></channel></rss>