<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0">
  <channel>
    <title>DotNetKicks.com : Stories kicked by den2005</title>
    <description>Stories kicked by den2005</description>
    <link>http://www.dotnetkicks.com/</link>
    <language>en-us</language>
    <copyright>Atweb Publishing Ltd.</copyright>
    <docs>http://backend.userland.com/rss</docs>
    <generator>DotNetKicks.com - .NET links, community driven</generator>
    <ttl>30</ttl>
    <item>
      <title> .NET Framework Library Source Code now available</title>
      <description>Scott Guthrie announces that the .NET framework source code can now accessed in Visual Studio &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fweblogs.asp.net%2fscottgu%2farchive%2f2008%2f01%2f16%2fnet-framework-library-source-code-now-available.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fweblogs.asp.net%2fscottgu%2farchive%2f2008%2f01%2f16%2fnet-framework-library-source-code-now-available.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/visualstudio/NET_Framework_Library_Source_Code_now_available</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/visualstudio/NET_Framework_Library_Source_Code_now_available</guid>
      <pubDate>Thu, 17 Jan 2008 06:46:02 GMT</pubDate>
    </item>
    <item>
      <title> LINQ to SQL (Part 9 - Using a Custom LINQ Expression)</title>
      <description>Scott Guthrie continues his series of blog posts that cover LINQ to SQL.  &amp;quot;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.  You can use LINQ expressions to query the database with them, as well as update/insert/delete data.&amp;quot; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fweblogs.asp.net%2fscottgu%2farchive%2f2007%2f09%2f07%2flinq-to-sql-part-9-using-a-custom-linq-expression-with-the-lt-asp-linqdatasource-gt-control.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fweblogs.asp.net%2fscottgu%2farchive%2f2007%2f09%2f07%2flinq-to-sql-part-9-using-a-custom-linq-expression-with-the-lt-asp-linqdatasource-gt-control.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/database/LINQ_to_SQL_Part_9_Using_a_Custom_LINQ_Expression</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/database/LINQ_to_SQL_Part_9_Using_a_Custom_LINQ_Expression</guid>
      <pubDate>Mon, 10 Sep 2007 06:31:01 GMT</pubDate>
    </item>
    <item>
      <title>Url Rewriting in ASP.NET (ScottGu)</title>
      <description>People often ask me for guidance on how they can dynamically &amp;quot;re-write&amp;quot; URLs and/or have the ability to publish cleaner URL end-points within their ASP.NET web applications.  This blog post summarizes a few approaches you can take to cleanly map or rewrite URLs with ASP.NET, and have the option to structure the URLs of your application however you want. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fweblogs.asp.net%2fscottgu%2farchive%2f2007%2f02%2f26%2ftip-trick-url-rewriting-with-asp-net.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fweblogs.asp.net%2fscottgu%2farchive%2f2007%2f02%2f26%2ftip-trick-url-rewriting-with-asp-net.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Url_Rewriting_in_ASP_NET_ScottGu</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Url_Rewriting_in_ASP_NET_ScottGu</guid>
      <pubDate>Wed, 28 Feb 2007 17:16:02 GMT</pubDate>
    </item>
    <item>
      <title>Using DLINQ with ASP.NET (Part II)</title>
      <description>One of the really powerful aspects of LINQ is that it can be used against any type of object or data source, and provides a consistent programming model for doing this.  LINQ ships with implementations that support LINQ against regular object collections, databases, entities, and XML sources.  Because LINQ supports rich extensibility, developers can also easily integrate LINQ with other data sources and providers as well. In this blog post Scott Guthrie provides a quick overview of some of the key LINQ for databases concepts (aka DLINQ), and then walk through a sample that shows how you can start to use LINQ against a database within an ASP.NET 2.0 application. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fweblogs.asp.net%2fscottgu%2farchive%2f2006%2f06%2f04%2fUsing-DLINQ-with-ASP.NET-_2800_Part-2-of-my-LINQ-series_2900_.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fweblogs.asp.net%2fscottgu%2farchive%2f2006%2f06%2f04%2fUsing-DLINQ-with-ASP.NET-_2800_Part-2-of-my-LINQ-series_2900_.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Using_DLINQ_with_ASP_NET_Part_II</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Using_DLINQ_with_ASP_NET_Part_II</guid>
      <pubDate>Tue, 06 Jun 2006 06:09:01 GMT</pubDate>
    </item>
  </channel>
</rss>
