<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0">
  <channel>
    <title>DotNetKicks.com - Stories tagged with using</title>
    <description>the latest stories tagged with 'using' from DotNetKicks.com</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>What If I Don't Call Dispose() on my LINQ to SQL DataContext Object?</title>
      <description>Steven Walther recently posted on the subject of disposing of DataContext objects and provided some interesting insight into what actually happens.  From what he says it sounds like the DataContext object acts much like the SqlDataAdapter class.  It opens the connection right before a query is executed and closes it immediately after.  I don't want to steal Steven's thunder so check out his post on the subject (the last part of the article talks about the consequences.or lack of consequences.of not calling Dispose()).   &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fweblogs.asp.net%2fdwahlin%2farchive%2f2008%2f08%2f19%2fwhat-if-i-don-t-call-dispose-on-my-linq-to-sql-datacontext-object.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fweblogs.asp.net%2fdwahlin%2farchive%2f2008%2f08%2f19%2fwhat-if-i-don-t-call-dispose-on-my-linq-to-sql-datacontext-object.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/clr/What_If_I_Don_t_Call_Dispose_on_my_LINQ_to_SQL_DataContext_Object</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/clr/What_If_I_Don_t_Call_Dispose_on_my_LINQ_to_SQL_DataContext_Object</guid>
      <pubDate>Wed, 20 Aug 2008 22:05:41 GMT</pubDate>
    </item>
    <item>
      <title>Using &amp;quot;using&amp;quot; with a method</title>
      <description>A nice coding technique I've just run into. It's one of those things that it's good to know about. Enjoy! &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblogs.microsoft.co.il%2fblogs%2fshayf%2farchive%2f2008%2f06%2f29%2fusing-quot-using-quot-with-a-method.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblogs.microsoft.co.il%2fblogs%2fshayf%2farchive%2f2008%2f06%2f29%2fusing-quot-using-quot-with-a-method.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Using_using_with_a_method</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Using_using_with_a_method</guid>
      <pubDate>Sun, 29 Jun 2008 19:41:25 GMT</pubDate>
    </item>
    <item>
      <title>Multiple "using" statements</title>
      <description>Tips on saving some indenting space on multiple &amp;quot;using&amp;quot; statements &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.nosoupforme.com%2farchive%2fmultiple-using-statements-13%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.nosoupforme.com%2farchive%2fmultiple-using-statements-13%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Multiple_using_statements</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Multiple_using_statements</guid>
      <pubDate>Mon, 10 Dec 2007 22:31:02 GMT</pubDate>
    </item>
    <item>
      <title>How to Alias Namespaces and Data Types </title>
      <description>One of the little known features of .NET is that you can give complete namespaces and data types alias's that you can reference them with in code. This trick allows you to get around the issue of having ambiguous namespaces and/or objects. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fpietschsoft.com%2fBlog%2fPost.aspx%3fPostID%3d1426"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fpietschsoft.com%2fBlog%2fPost.aspx%3fPostID%3d1426" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/tipsandtricks/How_to_Alias_Namespaces_and_Data_Types</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/tipsandtricks/How_to_Alias_Namespaces_and_Data_Types</guid>
      <pubDate>Mon, 26 Nov 2007 16:10:18 GMT</pubDate>
    </item>
    <item>
      <title>Using LINQ to SQL (Part 1)</title>
      <description>&amp;quot;LINQ to SQL is an O/RM (object relational mapping) implementation that ships in the .NET Framework &amp;quot;Orcas&amp;quot; release, and which allows you to model a relational database using .NET classes.  You can then query the database using LINQ, as well as update/insert/delete data from it.

LINQ to SQL fully supports transactions, views, and stored procedures.  It also provides an easy way to integrate data validation and business logic rules into your data model.&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%2f05%2f19%2fusing-linq-to-sql-part-1.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fweblogs.asp.net%2fscottgu%2farchive%2f2007%2f05%2f19%2fusing-linq-to-sql-part-1.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/database/Using_LINQ_to_SQL_Part_1</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/database/Using_LINQ_to_SQL_Part_1</guid>
      <pubDate>Mon, 28 May 2007 00:41:35 GMT</pubDate>
    </item>
  </channel>
</rss>