<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.2.3" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments on: Lazy Loading with Linq to SQL POCO s</title>
	<link>http://www.sidarok.com/web/blog/content/2008/10/29/lazy-loading-with-linq-to-sql-poco-s.html</link>
	<description>still believes in coding to make dreams come true</description>
	<pubDate>Sat, 04 Feb 2012 19:36:20 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.3</generator>

	<item>
		<title>By: Onur</title>
		<link>http://www.sidarok.com/web/blog/content/2008/10/29/lazy-loading-with-linq-to-sql-poco-s.html#comment-31482</link>
		<dc:creator>Onur</dc:creator>
		<pubDate>Sat, 06 Aug 2011 12:05:47 +0000</pubDate>
		<guid>http://www.sidarok.com/web/blog/content/2008/10/29/lazy-loading-with-linq-to-sql-poco-s.html#comment-31482</guid>
		<description>hocam gunlerdir 

entity imde bulunan

public virtual IList ActAreaList { get; set; } degiskenini serialize etmek icin ugrasiyorum nasil yapabilirim?

Aldigim hata ise su sekilde:

Cannot serialize member [...].ActAreaList of type System.Collections.Generic.IList`1[[[...].ActArea, [...], Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] because it is an interface. 

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.</description>
		<content:encoded><![CDATA[<p>hocam gunlerdir </p>
<p>entity imde bulunan</p>
<p>public virtual IList ActAreaList { get; set; } degiskenini serialize etmek icin ugrasiyorum nasil yapabilirim?</p>
<p>Aldigim hata ise su sekilde:</p>
<p>Cannot serialize member [&#8230;].ActAreaList of type System.Collections.Generic.IList`1[[[&#8230;].ActArea, [&#8230;], Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] because it is an interface. </p>
<p>Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sidar Ok</title>
		<link>http://www.sidarok.com/web/blog/content/2008/10/29/lazy-loading-with-linq-to-sql-poco-s.html#comment-4568</link>
		<dc:creator>Sidar Ok</dc:creator>
		<pubDate>Mon, 08 Dec 2008 14:23:54 +0000</pubDate>
		<guid>http://www.sidarok.com/web/blog/content/2008/10/29/lazy-loading-with-linq-to-sql-poco-s.html#comment-4568</guid>
		<description>@Michal,

You shouldn't have any problems by calling the generic implementation for multiple properties since a different proxy will be created for each of the properties that needs to be lazily loaded. You need to create another EntityInvokeWrapper&lt;T&gt; for your second entity and hook it up to the loading process as shown above.</description>
		<content:encoded><![CDATA[<p>@Michal,</p>
<p>You shouldn&#8217;t have any problems by calling the generic implementation for multiple properties since a different proxy will be created for each of the properties that needs to be lazily loaded. You need to create another EntityInvokeWrapper<t> for your second entity and hook it up to the loading process as shown above.</t></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michal Sakowicz</title>
		<link>http://www.sidarok.com/web/blog/content/2008/10/29/lazy-loading-with-linq-to-sql-poco-s.html#comment-4548</link>
		<dc:creator>Michal Sakowicz</dc:creator>
		<pubDate>Sun, 07 Dec 2008 18:28:20 +0000</pubDate>
		<guid>http://www.sidarok.com/web/blog/content/2008/10/29/lazy-loading-with-linq-to-sql-poco-s.html#comment-4548</guid>
		<description>Great post, well done! Correct me if I am wrong but as far as I can see current implementation allows you to lazy load only one additional object/collection per class? 
What if Question class would have additional property, beside Answer, that we want to lazy load?</description>
		<content:encoded><![CDATA[<p>Great post, well done! Correct me if I am wrong but as far as I can see current implementation allows you to lazy load only one additional object/collection per class?<br />
What if Question class would have additional property, beside Answer, that we want to lazy load?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sidar Ok</title>
		<link>http://www.sidarok.com/web/blog/content/2008/10/29/lazy-loading-with-linq-to-sql-poco-s.html#comment-2653</link>
		<dc:creator>Sidar Ok</dc:creator>
		<pubDate>Fri, 31 Oct 2008 00:16:32 +0000</pubDate>
		<guid>http://www.sidarok.com/web/blog/content/2008/10/29/lazy-loading-with-linq-to-sql-poco-s.html#comment-2653</guid>
		<description>No problem, ask any questions you come up with. Here are the sources : http://www.sidarok.com/files/LazyLoadingPocoSample.rar 

I intentionally left it dirty to show the paths I tried to go down. Hope it helps.</description>
		<content:encoded><![CDATA[<p>No problem, ask any questions you come up with. Here are the sources : <a href="http://www.sidarok.com/files/LazyLoadingPocoSample.rar" rel="nofollow" >http://www.sidarok.com/files/LazyLoadingPocoSample.rar</a> </p>
<p>I intentionally left it dirty to show the paths I tried to go down. Hope it helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Russ Painter</title>
		<link>http://www.sidarok.com/web/blog/content/2008/10/29/lazy-loading-with-linq-to-sql-poco-s.html#comment-2629</link>
		<dc:creator>Russ Painter</dc:creator>
		<pubDate>Thu, 30 Oct 2008 08:25:42 +0000</pubDate>
		<guid>http://www.sidarok.com/web/blog/content/2008/10/29/lazy-loading-with-linq-to-sql-poco-s.html#comment-2629</guid>
		<description>Thanks.  Although I think I need to read that a couple more times.  Do you have source code to share?</description>
		<content:encoded><![CDATA[<p>Thanks.  Although I think I need to read that a couple more times.  Do you have source code to share?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

