<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="http://syndication.webwiz.co.uk/rss_namespace/">
 <channel>
  <title>DevForce Community Forum : Include and problem of RelatedEntity&lt;T&gt;</title>
  <link>http://www.ideablade.com/forum/</link>
  <description>This is an XML content feed of; DevForce Community Forum : DevForce 2010 : Include and problem of RelatedEntity&lt;T&gt;</description>
  <pubDate>Wed, 13 May 2026 06:26:31 -700</pubDate>
  <lastBuildDate>Fri, 01 Jun 2012 08:20:56 -700</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 9.69</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>www.ideablade.com/forum/RSS_post_feed.asp?TID=3467</WebWizForums:feedURL>
  <image>
   <title>DevForce Community Forum</title>
   <url>http://www.ideablade.com/forum/forum_images/IdeaBlade_logo_tm.png</url>
   <link>http://www.ideablade.com/forum/</link>
  </image>
  <item>
   <title>Include and problem of RelatedEntity&lt;T&gt; : Hello Marcel, var query = enti...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=3467&amp;PID=13703#13703</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=1136" rel="nofollow">pponzano</a><br /><strong>Subject:</strong> 3467<br /><strong>Posted:</strong> 01-Jun-2012 at 8:20am<br /><br />Hello Marcel,<br><br> <span style="COLOR: blue">var</span> query = entityManagerProvider.Manager.INDICATORI<div>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .Include(o1 =&gt; o1.SNAPSHOT)</div><div>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .Where(x =&gt; x.Dashboards.Any(y =&gt;&nbsp;y.ID ==&nbsp;idDashboard));<br>was exacly what I was looking for...I wasn't aware of the any usage in this way so I woudn't succed in!<br><br>Thanks a lot!<br><br><br></div><br>]]>
   </description>
   <pubDate>Fri, 01 Jun 2012 08:20:56 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=3467&amp;PID=13703#13703</guid>
  </item> 
  <item>
   <title>Include and problem of RelatedEntity&lt;T&gt; : Reading your post again, I&amp;#039;m...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=3467&amp;PID=13694#13694</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=1005" rel="nofollow">mgood</a><br /><strong>Subject:</strong> 3467<br /><strong>Posted:</strong> 31-May-2012 at 11:12am<br /><br />Reading your post again, I'm not sure if you need INDICATORI entities or if you only&nbsp;want the SNAPSHOP entities. If you only want the snapshot entities, then you can do the following:<DIV>&nbsp;</DIV><DIV><P style="MARGIN: 0px"><SPAN style="COLOR: blue">public</SPAN> <SPAN style="COLOR: #2b91af">OperationResult</SPAN>&lt;<SPAN style="COLOR: #2b91af">IEnumerable</SPAN>&lt;<SPAN style="COLOR: #2b91af"><FONT color=#000000>SNAPSHOT</FONT></SPAN>&gt;&gt; GetSnapshotFromDashboardAsync(<SPAN style="COLOR: blue">int</SPAN> idDashboard, <SPAN style="COLOR: #2b91af">Action</SPAN>&lt;<SPAN style="COLOR: #2b91af"><SPAN style="COLOR: #2b91af">IEnumerable</SPAN><FONT color=#000000>&lt;<SPAN style="COLOR: #2b91af">SNAPSHOT</SPAN>&gt;</FONT></SPAN>&gt; onSuccess = <SPAN style="COLOR: blue">null</SPAN>, <SPAN style="COLOR: #2b91af">Action</SPAN>&lt;<SPAN style="COLOR: #2b91af">Exception</SPAN>&gt; onFail = <SPAN style="COLOR: blue">null</SPAN>)</P><P style="MARGIN: 0px">&nbsp;&nbsp;&nbsp; &nbsp; {</P><P style="MARGIN: 0px">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; <SPAN style="COLOR: blue">var</SPAN> query = entityManagerProvider.Manager.INDICATORI</P><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .Where(x =&gt; x.Dashboards.Any(y =&gt;&nbsp;y.ID ==&nbsp;idDashboard))</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .SelectMany(x =&gt; x.SNAPSHOT)</DIV><P style="MARGIN: 0px">&nbsp;</P><P style="MARGIN: 0px">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; <SPAN style="COLOR: blue">var</SPAN> op = query.ExecuteAsync();</P><P style="MARGIN: 0px">&nbsp;</P><P style="MARGIN: 0px">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; <SPAN style="COLOR: blue">return</SPAN> op.OnComplete(onSuccess, onFail).AsOperationResult();</P><P style="MARGIN: 0px">&nbsp;&nbsp;&nbsp; &nbsp; }</P><DIV></DIV></DIV><DIV>or if you want the SNAPSHOT entities, but also get each associated INDICATORI with it, then you invert the query and start with SNAPSHOT:</DIV><DIV>&nbsp;</DIV><DIV><DIV><P style="MARGIN: 0px"><SPAN style="COLOR: blue">public</SPAN> <SPAN style="COLOR: #2b91af">OperationResult</SPAN>&lt;<SPAN style="COLOR: #2b91af">IEnumerable</SPAN>&lt;<SPAN style="COLOR: #2b91af"><FONT color=#000000>SNAPSHOT</FONT></SPAN>&gt;&gt; GetSnapshotFromDashboardAsync(<SPAN style="COLOR: blue">int</SPAN> idDashboard, <SPAN style="COLOR: #2b91af">Action</SPAN>&lt;<SPAN style="COLOR: #2b91af"><SPAN style="COLOR: #2b91af">IEnumerable</SPAN><FONT color=#000000>&lt;<SPAN style="COLOR: #2b91af">SNAPSHOT</SPAN>&gt;</FONT></SPAN>&gt; onSuccess = <SPAN style="COLOR: blue">null</SPAN>, <SPAN style="COLOR: #2b91af">Action</SPAN>&lt;<SPAN style="COLOR: #2b91af">Exception</SPAN>&gt; onFail = <SPAN style="COLOR: blue">null</SPAN>)</P><P style="MARGIN: 0px">&nbsp;&nbsp;&nbsp; &nbsp; {</P><P style="MARGIN: 0px">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; <SPAN style="COLOR: blue">var</SPAN> query = entityManagerProvider.Manager.SNAPSHOT</P><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .Include(x =&gt; x.INDICATORI)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .Where(x =&gt; x.INDICATOR.Dashboards.Any(y =&gt;&nbsp;y.ID ==&nbsp;idDashboard));</DIV><P style="MARGIN: 0px">&nbsp;</P><P style="MARGIN: 0px">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; <SPAN style="COLOR: blue">var</SPAN> op = query.ExecuteAsync();</P><P style="MARGIN: 0px">&nbsp;</P><P style="MARGIN: 0px">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; <SPAN style="COLOR: blue">return</SPAN> op.OnComplete(onSuccess, onFail).AsOperationResult();</P><P style="MARGIN: 0px">&nbsp;&nbsp;&nbsp; &nbsp; }</P><DIV></DIV></DIV></DIV>]]>
   </description>
   <pubDate>Thu, 31 May 2012 11:12:19 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=3467&amp;PID=13694#13694</guid>
  </item> 
  <item>
   <title>Include and problem of RelatedEntity&lt;T&gt; : Oh, sorry, didn&amp;#039;t notice...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=3467&amp;PID=13692#13692</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=1005" rel="nofollow">mgood</a><br /><strong>Subject:</strong> 3467<br /><strong>Posted:</strong> 31-May-2012 at 10:42am<br /><br />Oh, sorry, didn't notice you had a many-to-many there. So, let's try again.&nbsp;INDICATORI should have a Dashboards related entity list, again not sure what you called the property.<DIV>&nbsp;</DIV><DIV><DIV><DIV style="FONT-FAMILY: C&#111;nsolas; COLOR: black; FONT-SIZE: 10pt"><P style="MARGIN: 0px"><SPAN style="COLOR: blue">public</SPAN> <SPAN style="COLOR: #2b91af">OperationResult</SPAN>&lt;<SPAN style="COLOR: #2b91af">IEnumerable</SPAN>&lt;<SPAN style="COLOR: #2b91af">INDICATORI</SPAN>&gt;&gt; GetIndicatoriFromDashboardAsync(<SPAN style="COLOR: blue">int</SPAN> idDashboard, <SPAN style="COLOR: #2b91af">Action</SPAN>&lt;<SPAN style="COLOR: #2b91af"><SPAN style="COLOR: #2b91af">IEnumerable</SPAN><FONT color=#000000>&lt;</FONT><SPAN style="COLOR: #2b91af">INDICATORI</SPAN><FONT color=#000000>&gt;</FONT></SPAN>&gt; onSuccess = <SPAN style="COLOR: blue">null</SPAN>, <SPAN style="COLOR: #2b91af">Action</SPAN>&lt;<SPAN style="COLOR: #2b91af">Exception</SPAN>&gt; onFail = <SPAN style="COLOR: blue">null</SPAN>)</P><P style="MARGIN: 0px">&nbsp;&nbsp;&nbsp; &nbsp; {</P><P style="MARGIN: 0px">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; <SPAN style="COLOR: blue">var</SPAN> query = entityManagerProvider.Manager.INDICATORI</P><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .Include(o1 =&gt; o1.SNAPSHOT)</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .Where(x =&gt; x.Dashboards.Any(y =&gt;&nbsp;y.ID ==&nbsp;idDashboard));</DIV><P style="MARGIN: 0px">&nbsp;</P><P style="MARGIN: 0px">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; <SPAN style="COLOR: blue">var</SPAN> op = query.ExecuteAsync();</P><P style="MARGIN: 0px">&nbsp;</P><P style="MARGIN: 0px">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; <SPAN style="COLOR: blue">return</SPAN> op.OnComplete(onSuccess, onFail).AsOperationResult();</P><P style="MARGIN: 0px">&nbsp;&nbsp;&nbsp; &nbsp; }</P></DIV><BR></DIV></DIV>]]>
   </description>
   <pubDate>Thu, 31 May 2012 10:42:48 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=3467&amp;PID=13692#13692</guid>
  </item> 
  <item>
   <title>Include and problem of RelatedEntity&lt;T&gt; : Ok, so you want to query INDICATORI...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=3467&amp;PID=13690#13690</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=1005" rel="nofollow">mgood</a><br /><strong>Subject:</strong> 3467<br /><strong>Posted:</strong> 31-May-2012 at 10:36am<br /><br />Ok, so you want to query INDICATORI entities&nbsp;and not DBOARD entities. So, first of all your query should start with INDICATORI, because that's what you want to return. Based on your relationships, INDICATORI should have a DashboardID property. Not sure what it's called in your model. <DIV></DIV><DIV>&nbsp;</DIV><DIV>So, the following should work, assuming the names are correct.&nbsp;A little tip on the side, make a habbit of appending Async at the end of asynchronous methods. Makes it clear to the caller that the method follows an asynchronous calling pattern.</DIV><DIV>&nbsp;</DIV><DIV><DIV style="FONT-FAMILY: C&#111;nsolas; COLOR: black; FONT-SIZE: 10pt"><P style="MARGIN: 0px"><SPAN style="COLOR: blue">public</SPAN> <SPAN style="COLOR: #2b91af">OperationResult</SPAN>&lt;<SPAN style="COLOR: #2b91af">IEnumerable</SPAN>&lt;<SPAN style="COLOR: #2b91af">INDICATORI</SPAN>&gt;&gt; GetIndicatoriFromDashboardAsync(<SPAN style="COLOR: blue">int</SPAN> idDashboard, <SPAN style="COLOR: #2b91af">Action</SPAN>&lt;<SPAN style="COLOR: #2b91af"><SPAN style="COLOR: #2b91af">IEnumerable</SPAN><FONT color=#000000>&lt;</FONT><SPAN style="COLOR: #2b91af">INDICATORI</SPAN><FONT color=#000000>&gt;</FONT></SPAN>&gt; onSuccess = <SPAN style="COLOR: blue">null</SPAN>, <SPAN style="COLOR: #2b91af">Action</SPAN>&lt;<SPAN style="COLOR: #2b91af">Exception</SPAN>&gt; onFail = <SPAN style="COLOR: blue">null</SPAN>)</P><P style="MARGIN: 0px">&nbsp;&nbsp;&nbsp; &nbsp; {</P><P style="MARGIN: 0px">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; <SPAN style="COLOR: blue">var</SPAN> query = entityManagerProvider.Manager.INDICATORI</P><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .Include(o1 =&gt; o1.SNAPSHOT)</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .Where(x =&gt; x.DashboardID == idDashboard);</DIV><P style="MARGIN: 0px">&nbsp;</P><P style="MARGIN: 0px">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; <SPAN style="COLOR: blue">var</SPAN> op = query.ExecuteAsync();</P><P style="MARGIN: 0px">&nbsp;</P><P style="MARGIN: 0px">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; <SPAN style="COLOR: blue">return</SPAN> op.OnComplete(onSuccess, onFail).AsOperationResult();</P><P style="MARGIN: 0px">&nbsp;&nbsp;&nbsp; &nbsp; }</P></DIV><BR></DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><span style="font-size:10px"><br /><br />Edited by mgood - 31-May-2012 at 10:38am</span>]]>
   </description>
   <pubDate>Thu, 31 May 2012 10:36:40 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=3467&amp;PID=13690#13690</guid>
  </item> 
  <item>
   <title>Include and problem of RelatedEntity&lt;T&gt; : Hello,I premit I&amp;#039;m fair new...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=3467&amp;PID=13689#13689</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=1136" rel="nofollow">pponzano</a><br /><strong>Subject:</strong> 3467<br /><strong>Posted:</strong> 31-May-2012 at 8:52am<br /><br />Hello,<br>I premit I'm fair new of Ideablade....<br>I'm tring to fetch data from a silverlight application with mvvm (cocktail),I've this kind of relation <br><br>Dashboard (*) &lt;-&gt; (*) Indicatori (1) -&gt; (*) SNAPSHOT<br><br>I'm able to run this query and have the Snapshot taken with include<br><br><div style="font-family: C&#111;nsolas; font-size: 10pt; color: black; : white;"><p style="margin: 0px;"><span style="color: blue;">public</span> <span style="color: #2b91af;">OperationResult</span>&lt;<span style="color: #2b91af;">IEnumerable</span>&lt;<span style="color: #2b91af;">INDICATORI</span>&gt;&gt; GetIndicatoriFromDashboard(<span style="color: blue;">int</span> idDashboard, <span style="color: #2b91af;">Action</span>&lt;<span style="color: #2b91af;">IEnumerable</span>&gt; onSuccess = <span style="color: blue;">null</span>, <span style="color: #2b91af;">Action</span>&lt;<span style="color: #2b91af;">Exception</span>&gt; onFail = <span style="color: blue;">null</span>)</p><p style="margin: 0px;">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; {</p><p style="margin: 0px;">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; <span style="color: blue;">var</span> q = entityManagerProvider.Manager.INDICATORI.Select(o1 =&gt; o1).Include(o1=&gt;o1.SNAPSHOT);</p><p style="margin: 0px;">&nbsp;</p><p style="margin: 0px;">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; <span style="color: #2b91af;">EntityQueryOperation</span>&lt;<span style="color: #2b91af;">INDICATORI</span>&gt; op = q.ExecuteAsync();</p><p style="margin: 0px;">&nbsp;</p><p style="margin: 0px;">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; <span style="color: blue;">return</span> op.OnComplete(onSuccess, onFail).AsOperationResult&lt;<span style="color: #2b91af;">INDICATORI</span>&gt;();</p><p style="margin: 0px;">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; }</p></div><br>I'm not able to filter on idDashboard since if I do<br><br><div style="font-family: C&#111;nsolas; font-size: 10pt; color: black; : white;"><p style="margin: 0px;"><span style="color: blue;">public</span> <span style="color: #2b91af;">OperationResult</span>&lt;<span style="color: #2b91af;">IEnumerable</span>&lt;<span style="color: #2b91af;">RelatedEntityList</span>&lt;<span style="color: #2b91af;">INDICATORI</span>&gt;&gt;&gt; GetIndicatoriFromDashboard(<span style="color: blue;">int</span> idDashboard, <span style="color: #2b91af;">Action</span>&lt;<span style="color: #2b91af;">IEnumerable</span>&gt; onSuccess = <span style="color: blue;">null</span>, <span style="color: #2b91af;">Action</span>&lt;<span style="color: #2b91af;">Exception</span>&gt; onFail = <span style="color: blue;">null</span>)</p><p style="margin: 0px;">&nbsp;&nbsp;&nbsp; &nbsp; {</p><p style="margin: 0px;">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; <span style="color: blue;">var</span> query = entityManagerProvider.Manager.DBOARD.Where(o1 =&gt; o1.ID == idDashboard).Select(o1 =&gt; o1.INDICATORI).Include(<span style="color: #a31515;">"SNAPSHOT"</span>);</p><p style="margin: 0px;">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; <span style="color: blue;">var</span> q = entityManagerProvider.Manager.INDICATORI.Select(o1 =&gt; o1).Include(o1 =&gt; o1.SNAPSHOT);</p><p style="margin: 0px;">&nbsp;</p><p style="margin: 0px;">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; <span style="color: blue;">var</span> op = query.ExecuteAsync();</p><p style="margin: 0px;">&nbsp;</p><p style="margin: 0px;">&nbsp;</p><p style="margin: 0px;">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; <span style="color: blue;">return</span> op.OnComplete(onSuccess, onFail).AsOperationResult();</p><p style="margin: 0px;">&nbsp;&nbsp;&nbsp; &nbsp; }</p></div><br>Executing this I got <b>The result type of the query is neither an EntityType nor a CollectionType with an entity element type. An Include path can only be specified for a query with one of these result types.</b><br><br>I've read that include cannot be filtered....but how can I filter from idDashboard? if I were in wpf I would have done a ToList and then split but in sl I must do it async......any help?<br>Thanks<br><br>]]>
   </description>
   <pubDate>Thu, 31 May 2012 08:52:55 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=3467&amp;PID=13689#13689</guid>
  </item> 
 </channel>
</rss>