<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: LINQ to SQL tips and tricks #1</title>
	<atom:link href="http://damieng.com/blog/2009/03/16/linq-to-sql-tips-and-tricks-1/feed" rel="self" type="application/rss+xml" />
	<link>http://damieng.com/blog/2009/03/16/linq-to-sql-tips-and-tricks-1?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=linq-to-sql-tips-and-tricks-1</link>
	<description>A .NET developer in silicon valley</description>
	<lastBuildDate>Sun, 25 Dec 2011 15:10:30 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Michael D. Hall</title>
		<link>http://damieng.com/blog/2009/03/16/linq-to-sql-tips-and-tricks-1#comment-17723</link>
		<dc:creator>Michael D. Hall</dc:creator>
		<pubDate>Thu, 21 May 2009 03:39:39 +0000</pubDate>
		<guid isPermaLink="false">http://damieng.com/blog/2009/03/16/linq-to-sql-tips-and-tricks-1#comment-17723</guid>
		<description>@Zhaph Thanks, sometimes it is hard to ask the question when you don&#039;t have the words for it. I appreciate the tip!</description>
		<content:encoded><![CDATA[<p>@Zhaph Thanks, sometimes it is hard to ask the question when you don&#8217;t have the words for it. I appreciate the tip!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zhaph - Ben Duguid</title>
		<link>http://damieng.com/blog/2009/03/16/linq-to-sql-tips-and-tricks-1#comment-17673</link>
		<dc:creator>Zhaph - Ben Duguid</dc:creator>
		<pubDate>Wed, 20 May 2009 15:48:12 +0000</pubDate>
		<guid isPermaLink="false">http://damieng.com/blog/2009/03/16/linq-to-sql-tips-and-tricks-1#comment-17673</guid>
		<description>@Michael - searching for &quot;Linq to SQL Extensibility&quot; is a good start - that&#039;s the name given to those methods in the default generated code:

    #region Extensibility Method Definitions
    partial void OnCreated();
    partial void InsertsiteContent_Album(siteContent_Album instance);
    partial void UpdatesiteContent_Album(siteContent_Album instance);
    partial void DeletesiteContent_Album(siteContent_Album instance);
    #endregion

Alternatively, ScottGu calls them &quot;Custom Entity Insert/Update/Delete Method Validation&quot; in his post: http://weblogs.asp.net/scottgu/archive/2007/07/11/linq-to-sql-part-4-updating-our-database.aspx</description>
		<content:encoded><![CDATA[<p>@Michael &#8211; searching for &#8220;Linq to SQL Extensibility&#8221; is a good start &#8211; that&#8217;s the name given to those methods in the default generated code:</p>
<p>    #region Extensibility Method Definitions<br />
    partial void OnCreated();<br />
    partial void InsertsiteContent_Album(siteContent_Album instance);<br />
    partial void UpdatesiteContent_Album(siteContent_Album instance);<br />
    partial void DeletesiteContent_Album(siteContent_Album instance);<br />
    #endregion</p>
<p>Alternatively, ScottGu calls them &#8220;Custom Entity Insert/Update/Delete Method Validation&#8221; in his post: <a href="http://weblogs.asp.net/scottgu/archive/2007/07/11/linq-to-sql-part-4-updating-our-database.aspx" rel="nofollow">http://weblogs.asp.net/scottgu/archive/2007/07/11/linq-to-sql-part-4-updating-our-database.aspx</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael D. Hall</title>
		<link>http://damieng.com/blog/2009/03/16/linq-to-sql-tips-and-tricks-1#comment-17544</link>
		<dc:creator>Michael D. Hall</dc:creator>
		<pubDate>Tue, 19 May 2009 06:14:14 +0000</pubDate>
		<guid isPermaLink="false">http://damieng.com/blog/2009/03/16/linq-to-sql-tips-and-tricks-1#comment-17544</guid>
		<description>The interception feature is awesome, I can&#039;t believe that one flew under the radar. I&#039;m not sure how to query for that in Google though, as there are allot of people who&#039;ve rolled their own auditing functionality for L2S, can you point to some documentation or give a more complete example. I would appreciate that very much, thanks.</description>
		<content:encoded><![CDATA[<p>The interception feature is awesome, I can&#8217;t believe that one flew under the radar. I&#8217;m not sure how to query for that in Google though, as there are allot of people who&#8217;ve rolled their own auditing functionality for L2S, can you point to some documentation or give a more complete example. I would appreciate that very much, thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Summary 20.04.2009 &#171; Bogdan Brinzarea&#8217;s blog</title>
		<link>http://damieng.com/blog/2009/03/16/linq-to-sql-tips-and-tricks-1#comment-15459</link>
		<dc:creator>Summary 20.04.2009 &#171; Bogdan Brinzarea&#8217;s blog</dc:creator>
		<pubDate>Tue, 21 Apr 2009 12:52:07 +0000</pubDate>
		<guid isPermaLink="false">http://damieng.com/blog/2009/03/16/linq-to-sql-tips-and-tricks-1#comment-15459</guid>
		<description>[...] Guard has two nice posts with LINQ tips. In part one, he covers eager loading, retrieving multiple entity types from a single stored procedure, [...]</description>
		<content:encoded><![CDATA[<p>[...] Guard has two nice posts with LINQ tips. In part one, he covers eager loading, retrieving multiple entity types from a single stored procedure, [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ibleif</title>
		<link>http://damieng.com/blog/2009/03/16/linq-to-sql-tips-and-tricks-1#comment-12180</link>
		<dc:creator>Ibleif</dc:creator>
		<pubDate>Wed, 18 Mar 2009 21:00:19 +0000</pubDate>
		<guid isPermaLink="false">http://damieng.com/blog/2009/03/16/linq-to-sql-tips-and-tricks-1#comment-12180</guid>
		<description>Cool. Keep the tricks coming.

Would also be cool if you could reveal some of the upcoming features/changes to &quot;LINQ to SQL&quot; ?</description>
		<content:encoded><![CDATA[<p>Cool. Keep the tricks coming.</p>
<p>Would also be cool if you could reveal some of the upcoming features/changes to &#8220;LINQ to SQL&#8221; ?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

