<?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 : First Silverlight Use</title>
  <link>http://www.ideablade.com/forum/</link>
  <description>This is an XML content feed of; DevForce Community Forum : DevForce 2010 : First Silverlight Use</description>
  <pubDate>Sat, 25 Apr 2026 13:41:02 -700</pubDate>
  <lastBuildDate>Thu, 12 May 2011 10:42:37 -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=2668</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>First Silverlight Use :   I just wanted to expand on...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=2668&amp;PID=10661#10661</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=11" rel="nofollow">kimj</a><br /><strong>Subject:</strong> 2668<br /><strong>Posted:</strong> 12-May-2011 at 10:42am<br /><br />I just wanted to expand on what smi-mark said since this is a confusing topic and often causes problems for people new to Silverlight.&nbsp; <div></div>Lazy loading occurs by default in both Silverlight and non-Silverlight DevForce applications, but in Silverlight that load has to be asynchronous because the data has to be fetched from the server.&nbsp; You don't need to fire any events, and you don't need to listen for the Pending* events unless you want to.<div>&nbsp;</div><div>Using "Include" means you're doing "eager" loading, and can often be useful when you need an object graph.&nbsp; </div><div>&nbsp;</div><div>The Tour of DevForce Silverlight has a nice example of lazy vs. eager loading and may be worth a look.&nbsp; You can find it here (and I highly recommend the entire video series) - <a href="http://drc.ideablade.com/xwiki/bin/view/&#068;ocumentati&#111;n/tour-devforce-silverlight" target="_blank">http://drc.ideablade.com/xwiki/bin/view/Documentation/tour-devforce-silverlight</a></div><div>&nbsp;</div>]]>
   </description>
   <pubDate>Thu, 12 May 2011 10:42:37 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=2668&amp;PID=10661#10661</guid>
  </item> 
  <item>
   <title>First Silverlight Use : If you are databinding to the...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=2668&amp;PID=10641#10641</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=449" rel="nofollow">smi-mark</a><br /><strong>Subject:</strong> 2668<br /><strong>Posted:</strong> 11-May-2011 at 9:50am<br /><br />If you are databinding to the list then it should just fill in when it loads.&nbsp;Using an include would be the recommended approach though. <br>]]>
   </description>
   <pubDate>Wed, 11 May 2011 09:50:04 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=2668&amp;PID=10641#10641</guid>
  </item> 
  <item>
   <title>First Silverlight Use :   I guess that makes since....</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=2668&amp;PID=10640#10640</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=136" rel="nofollow">orcities</a><br /><strong>Subject:</strong> 2668<br /><strong>Posted:</strong> 11-May-2011 at 9:48am<br /><br />I guess that makes since. I am just used to it lazy loading. So in order to do lazy loading i have to fire the event to raise the changes?]]>
   </description>
   <pubDate>Wed, 11 May 2011 09:48:44 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=2668&amp;PID=10640#10640</guid>
  </item> 
  <item>
   <title>First Silverlight Use : I usually use an Include but I...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=2668&amp;PID=10639#10639</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=449" rel="nofollow">smi-mark</a><br /><strong>Subject:</strong> 2668<br /><strong>Posted:</strong> 11-May-2011 at 9:34am<br /><br />I usually use an Include but I believe it should IsNullOrPendingEntity and an event PendingEntityResolved should fire when it's lazy loaded.<br>]]>
   </description>
   <pubDate>Wed, 11 May 2011 09:34:07 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=2668&amp;PID=10639#10639</guid>
  </item> 
  <item>
   <title>First Silverlight Use :    I have developed many WPF...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=2668&amp;PID=10638#10638</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=136" rel="nofollow">orcities</a><br /><strong>Subject:</strong> 2668<br /><strong>Posted:</strong> 11-May-2011 at 8:53am<br /><br />I have developed many WPF and Windows apps. This is my first time really using Ideablade with SL.<div>&nbsp;</div><div>I have run an async query to recieve and entity. Some of the attached entities return detached or null. Do I have to do an Include with all of my async queries?</div><div>So basically lazy loading doesn't seem to work. Should it?</div><span style="font-size:10px"><br /><br />Edited by orcities - 11-May-2011 at 9:02am</span>]]>
   </description>
   <pubDate>Wed, 11 May 2011 08:53:17 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=2668&amp;PID=10638#10638</guid>
  </item> 
 </channel>
</rss>