<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://sqlblog.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Denis Gobo : ORM</title><link>http://sqlblog.com/blogs/denis_gobo/archive/tags/ORM/default.aspx</link><description>Tags: ORM</description><dc:language>en</dc:language><generator>CommunityServer 2.1 SP2 (Build: 61129.1)</generator><item><title>Article: LINQ to SQL (Part 6 - Retrieving Data Using Stored Procedures)</title><link>http://sqlblog.com/blogs/denis_gobo/archive/2007/08/20/2250.aspx</link><pubDate>Mon, 20 Aug 2007 15:02:00 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:2250</guid><dc:creator>Denis Gobo</dc:creator><slash:comments>1</slash:comments><comments>http://sqlblog.com/blogs/denis_gobo/comments/2250.aspx</comments><wfw:commentRss>http://sqlblog.com/blogs/denis_gobo/commentrss.aspx?PostID=2250</wfw:commentRss><wfw:comment>http://sqlblog.com/blogs/denis_gobo/rsscomments.aspx?PostID=2250</wfw:comment><description>&lt;DIV&gt;LINQ to SQL is a built-in O/RM (object relational mapper) that ships in the .NET Framework 3.5 release, and which enables you to model relational databases using .NET classes.&amp;nbsp; You can use LINQ expressions to query the database with them, as well as update/insert/delete data. &lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;This is the 6th article that Scott Guthrie has written about LINQ. The first 5 can be found below. &lt;BR&gt;&lt;BR&gt;&lt;A href="http://weblogs.asp.net/scottgu/archive/2007/05/19/using-linq-to-sql-part-1.aspx" target=_blank&gt;Part 1: Introduction to LINQ to SQL&lt;/A&gt; &lt;BR&gt;&lt;A href="http://weblogs.asp.net/scottgu/archive/2007/05/29/linq-to-sql-part-2-defining-our-data-model-classes.aspx" target=_blank&gt;Part 2: Defining our Data Model Classes&lt;/A&gt; &lt;BR&gt;&lt;A href="http://weblogs.asp.net/scottgu/archive/2007/06/29/linq-to-sql-part-3-querying-our-database.aspx" target=_blank&gt;Part 3: Querying our Database&lt;/A&gt; &lt;BR&gt;&lt;A href="http://weblogs.asp.net/scottgu/archive/2007/07/11/linq-to-sql-part-4-updating-our-database.aspx" target=_blank&gt;Part 4: Updating our Database&lt;/A&gt; &lt;BR&gt;&lt;A href="http://weblogs.asp.net/scottgu/archive/2007/07/16/linq-to-sql-part-5-binding-ui-using-the-asp-linqdatasource-control.aspx" target=_blank&gt;Part 5: Binding UI using the ASP:LinqDataSource Control&lt;/A&gt; &lt;BR&gt;&lt;BR&gt;What is covered in the 6th article? &lt;BR&gt;&lt;BR&gt;&lt;EM&gt;To SPROC or not to SPROC? That is the question.... &lt;BR&gt;The Steps to Map and Call a SPROC using LINQ to SQL &lt;BR&gt;How to Map a SPROC to a LINQ to SQL DataContext &lt;BR&gt;How to Call our Newly Mapped SPROC &lt;BR&gt;Mapping the Return Type of SPROC Methods to Data Model Classes &lt;BR&gt;Handling SPROC Output Parameters &lt;BR&gt;Handling Multiple Result Shapes from SPROCs &lt;BR&gt;Supporting User Defined Functions (UDFs) &lt;BR&gt;Summary&lt;/EM&gt; &lt;BR&gt;&lt;BR&gt;&lt;BR&gt;Read the 6th article here: &lt;A href="http://weblogs.asp.net/scottgu/archive/2007/08/16/linq-to-sql-part-6-retrieving-data-using-stored-procedures.aspx"&gt;http://weblogs.asp.net/scottgu/archive/2007/08/16/linq-to-sql-part-6-retrieving-data-using-stored-procedures.aspx&lt;/A&gt; &amp;nbsp;&lt;/DIV&gt;&lt;img src="http://sqlblog.com/aggbug.aspx?PostID=2250" width="1" height="1"&gt;</description><category domain="http://sqlblog.com/blogs/denis_gobo/archive/tags/LINQ/default.aspx">LINQ</category><category domain="http://sqlblog.com/blogs/denis_gobo/archive/tags/ORM/default.aspx">ORM</category><category domain="http://sqlblog.com/blogs/denis_gobo/archive/tags/SQL+Server+2008/default.aspx">SQL Server 2008</category></item><item><title>Good LINQ to SQL Posts</title><link>http://sqlblog.com/blogs/denis_gobo/archive/2007/07/12/1682.aspx</link><pubDate>Thu, 12 Jul 2007 13:03:00 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:1682</guid><dc:creator>Denis Gobo</dc:creator><slash:comments>0</slash:comments><comments>http://sqlblog.com/blogs/denis_gobo/comments/1682.aspx</comments><wfw:commentRss>http://sqlblog.com/blogs/denis_gobo/commentrss.aspx?PostID=1682</wfw:commentRss><wfw:comment>http://sqlblog.com/blogs/denis_gobo/rsscomments.aspx?PostID=1682</wfw:comment><description>&lt;DIV&gt;Over the last few weeks Scott Guthrie has been writing a series of blog posts that cover LINQ to SQL. LINQ to SQL is a built-in O/RM (object relational mapper) that ships in the .NET Framework 3.5 release, and which enables you to easily model relational databases using .NET classes. You can use LINQ expressions to query the database with them, as well as update/insert/delete data. It is a very good read so do check it out.&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;&lt;A href="http://weblogs.asp.net/scottgu/archive/2007/05/19/using-linq-to-sql-part-1.aspx" target=_blank&gt;LINQ to SQL Part 1: Introduction to LINQ to SQL&lt;/A&gt; &lt;BR&gt;&lt;A href="http://weblogs.asp.net/scottgu/archive/2007/05/29/linq-to-sql-part-2-defining-our-data-model-classes.aspx" target=_blank&gt;LINQ to SQL Part 2: Defining our Data Model Classes&lt;/A&gt; &lt;BR&gt;&lt;A href="http://weblogs.asp.net/scottgu/archive/2007/06/29/linq-to-sql-part-3-querying-our-database.aspx" target=_blank&gt;LINQ to SQL Part 3: Querying our Database&lt;/A&gt; &lt;BR&gt;&lt;A href="http://weblogs.asp.net/scottgu/archive/2007/07/11/linq-to-sql-part-4-updating-our-database.aspx"&gt;LINQ to SQL Part 4: Updating our Database &lt;/A&gt;&lt;/DIV&gt;&lt;img src="http://sqlblog.com/aggbug.aspx?PostID=1682" width="1" height="1"&gt;</description><category domain="http://sqlblog.com/blogs/denis_gobo/archive/tags/DLINQ/default.aspx">DLINQ</category><category domain="http://sqlblog.com/blogs/denis_gobo/archive/tags/LINQ/default.aspx">LINQ</category><category domain="http://sqlblog.com/blogs/denis_gobo/archive/tags/ORM/default.aspx">ORM</category></item></channel></rss>