<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0">
  <channel>
    <title>DotNetKicks.com : Stories kicked by crpietschmann</title>
    <description>Stories kicked by crpietschmann</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>C# 5 PropertyChanged - No more magic strings!</title>
      <description>Changes in C# 5 mean no more NotifyPropertyChanged(&amp;quot;SomeVariable&amp;quot;), which is a common source of bugs. It also means we no longer have to suffer the performance degradation associated with using workarounds such as lambda's just for the sake of compile-time checking. From here on out, the compiler does the work for us. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.robfe.com%2f2011%2f09%2fraising-the-right-propertychanged-with-c-5s-caller-info-attributes%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.robfe.com%2f2011%2f09%2fraising-the-right-propertychanged-with-c-5s-caller-info-attributes%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/C_5_PropertyChanged_No_more_magic_strings</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/C_5_PropertyChanged_No_more_magic_strings</guid>
      <pubDate>Thu, 22 Sep 2011 15:30:01 GMT</pubDate>
    </item>
    <item>
      <title>3 ways to Sort in Descending order via lambdas</title>
      <description>3 ways to Sort in Descending order via lambdas
In C# , one can sort the List of Objects using Lambdas easily . Until now , i found the LINQ Query to be more easy to sort but after using the Lamba expression , i feel that the lambda expression can also be used effectively to sort in descending order .
For example , i use the below class for the datapublic class Movie
{
   public string MovieName { get; set; }
   public string Actor { get; set; }
}
 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.ginktage.com%2f2011%2f09%2f3-ways-to-sort-in-descending-order-via-lambdas%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.ginktage.com%2f2011%2f09%2f3-ways-to-sort-in-descending-order-via-lambdas%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/3_ways_to_Sort_in_Descending_order_via_lambdas</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/3_ways_to_Sort_in_Descending_order_via_lambdas</guid>
      <pubDate>Mon, 12 Sep 2011 14:40:15 GMT</pubDate>
    </item>
    <item>
      <title>C# compiler uses Duck-Typing, not IEnumerable, for foreach loops</title>
      <description>Turns out that according to this post, and the C# 1.0 specification, that foreach loops in C# do not use IEnumerable (as found in the documentation) but rather duck-typing. Not necessarily consequential to our every day programming lives, but interesting nonetheless. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblogs.msdn.com%2fb%2fpshrosbree%2farchive%2f2011%2f08%2f19%2fduck-typing.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblogs.msdn.com%2fb%2fpshrosbree%2farchive%2f2011%2f08%2f19%2fduck-typing.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/C_compiler_uses_Duck_Typing_not_IEnumerable_for_foreach_loops</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/C_compiler_uses_Duck_Typing_not_IEnumerable_for_foreach_loops</guid>
      <pubDate>Fri, 09 Sep 2011 18:13:16 GMT</pubDate>
    </item>
    <item>
      <title>Share C# Anonymous Types across Functions and Scope</title>
      <description>So earlier today I was lamenting that an anonymous type can't be shared between functions with Wes Dyer, when he said &amp;quot;Well actually they can...&amp;quot; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblogs.msdn.com%2fb%2falexj%2farchive%2f2007%2f11%2f22%2ft-castbyexample-t-object-o-t-example.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblogs.msdn.com%2fb%2falexj%2farchive%2f2007%2f11%2f22%2ft-castbyexample-t-object-o-t-example.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Share_C_Anonymous_Types_across_Functions_and_Scope</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Share_C_Anonymous_Types_across_Functions_and_Scope</guid>
      <pubDate>Mon, 29 Aug 2011 01:34:06 GMT</pubDate>
    </item>
    <item>
      <title>15 Awesome ASP.NET Tips</title>
      <description>Some cool ASP.NET tips and tutorials you will find useful &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.dotnetcurry.com%2fShowArticle.aspx%3fID%3d746"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.dotnetcurry.com%2fShowArticle.aspx%3fID%3d746" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/15_Awesome_ASP_NET_Tips</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/15_Awesome_ASP_NET_Tips</guid>
      <pubDate>Sat, 06 Aug 2011 16:01:44 GMT</pubDate>
    </item>
    <item>
      <title>Thoughts on Micro-ORMs</title>
      <description>Chris Brandsma discusses some of the more popular micro-ORMs available today. In the comments, readers point out other alternatives to those listed by Chris.

For those of you looking for a simple X vs Y comparison of micro-ORMs like Dapper, Simple.Data, and Massive, this may come in handy. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2felegantcode.com%2f2011%2f08%2f02%2fthoughts-on-microorms%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2felegantcode.com%2f2011%2f08%2f02%2fthoughts-on-microorms%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/database/Thoughts_on_Micro_ORMs</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/database/Thoughts_on_Micro_ORMs</guid>
      <pubDate>Sat, 06 Aug 2011 15:44:03 GMT</pubDate>
    </item>
    <item>
      <title>Minimalist Coding Guidelines</title>
      <description>A nice write-up on generic coding standards that can be applied to any language by any programmer. There are years of experience (42, according to the author) poured into this piece, and it shows. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.codeproject.com%2fKB%2fwork%2fMinimalistCodingGuideline.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.codeproject.com%2fKB%2fwork%2fMinimalistCodingGuideline.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/tipsandtricks/Minimalist_Coding_Guidelines</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/tipsandtricks/Minimalist_Coding_Guidelines</guid>
      <pubDate>Sat, 06 Aug 2011 15:44:03 GMT</pubDate>
    </item>
    <item>
      <title>Fun With jQuery Deferred</title>
      <description>If you've upgraded to the recently released jQuery 1.5 you may have heard about the fancy new AJAX facilities that allow you to define things like this:

var jax = $.ajax({
  url: '/some/url'
})

jax.success(function() {
  alert(&amp;quot;It worked!&amp;quot;);&amp;quot;)
}); &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fintridea.com%2f2011%2f2%2f8%2ffun-with-jquery-deferred"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fintridea.com%2f2011%2f2%2f8%2ffun-with-jquery-deferred" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/ajax/Fun_With_jQuery_Deferred</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/ajax/Fun_With_jQuery_Deferred</guid>
      <pubDate>Fri, 11 Feb 2011 16:49:32 GMT</pubDate>
    </item>
    <item>
      <title>ASP.NET MVC Tip #48 - Disable Request Validation</title>
      <description>By default, the ASP.NET MVC framework prevents you from submitting form data that contains potentially malicious content. This feature is called request validation. This is a good feature. You don't want people sneaking scripts into your website that can steal passwords or other sensitive user information. Normally, you want to leave request validation enabled. Unlike a Web Forms application, you cannot disable request validation by using the &amp;lt;%@ Page ValidateRequest="false" %&amp;gt; directive. You also cannot disable request validation in the web configuration (web.config) file. If you want to disable request validation then you must use the [ValidateInput] attribute. You apply the [ValidateInput] attribute to the controller action that accepts the form input. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fstephenwalther.com%2fblog%2farchive%2f2009%2f02%2f20%2ftip-48-ndash-disable-request-validation.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fstephenwalther.com%2fblog%2farchive%2f2009%2f02%2f20%2ftip-48-ndash-disable-request-validation.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/mvc/ASP_NET_MVC_Tip_48_Disable_Request_Validation</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/mvc/ASP_NET_MVC_Tip_48_Disable_Request_Validation</guid>
      <pubDate>Thu, 03 Feb 2011 17:46:30 GMT</pubDate>
    </item>
    <item>
      <title>ASP.NET MVC 3 RTM Released!</title>
      <description>ASP.NET MVC 3 is a framework for developing highly testable and maintainable Web applications by leveraging the Model-View-Controller (MVC) pattern. The framework encourages developers to maintain a clear separation of concerns among the responsibilities of the application - the UI logic using the view, user-input handling using the controller, and the domain logic using the model. ASP.NET MVC applications are easily testable using techniques such as test-driven development (TDD). The installation package includes templates and tools for Visual Studio 2010 to increase productivity when writing ASP.NET MVC applications. For example, the Add View dialog box takes advantage of customizable code generation (T4) templates to generate a view based on a model object. The default project template allows the developer to automatically hook up a unit-test project that is associated with the ASP.NET MVC application. Because the ASP.NET MVC framework is built on ASP.NET 4, developers can take advantage of existing ASP.NET features like authentication and authorization, profile settings, localization, and so on. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.microsoft.com%2fdownloads%2fen%2fdetails.aspx%3fFamilyID%3dd2928bc1-f48c-4e95-a064-2a455a22c8f6"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.microsoft.com%2fdownloads%2fen%2fdetails.aspx%3fFamilyID%3dd2928bc1-f48c-4e95-a064-2a455a22c8f6" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/mvc/ASP_NET_MVC_3_RTM_Released</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/mvc/ASP_NET_MVC_3_RTM_Released</guid>
      <pubDate>Fri, 14 Jan 2011 03:12:31 GMT</pubDate>
    </item>
    <item>
      <title>Use Non-default Membership Provider for WCF Authentication Service</title>
      <description>This topic shows how to programmatically select the membership provider when you call the ASP.NET authentication service by using Windows Communication Foundation (WCF). You can use a non-default membership provider when you have to authenticate users by using different membership providers, based on information that you get at run time. To authenticate through a non-default membership provider, you create an event handler for the Authenticating event.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fmsdn.microsoft.com%2fen-us%2flibrary%2fbb386455.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fmsdn.microsoft.com%2fen-us%2flibrary%2fbb386455.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wcf/Use_Non_default_Membership_Provider_for_WCF_Authentication_Service</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wcf/Use_Non_default_Membership_Provider_for_WCF_Authentication_Service</guid>
      <pubDate>Tue, 23 Nov 2010 20:09:43 GMT</pubDate>
    </item>
    <item>
      <title>Silverlight Cached Assemblies and you can to!</title>
      <description>One of the new features I mentioned in my What's new/changed post on Silverlight 3 is the fact that any application developer can take advantage of the cached assembly functionality provided by Silverlight.  Let me show you how and start with the current situation. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2ftimheuer.com%2fblog%2farchive%2f2009%2f07%2f13%2fsilverlight-3-cached-assembly-feature.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2ftimheuer.com%2fblog%2farchive%2f2009%2f07%2f13%2fsilverlight-3-cached-assembly-feature.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/silverlight/Silverlight_Cached_Assemblies_and_you_can_to</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/silverlight/Silverlight_Cached_Assemblies_and_you_can_to</guid>
      <pubDate>Sun, 31 Oct 2010 16:02:48 GMT</pubDate>
    </item>
    <item>
      <title>IronRuby and IronPython to run by the Community, IR Tools for VS ++</title>
      <description>So much going on in the DLR world - IronRuby and IronPython are officially handed over to the community, IronRuby 1.1.1 is released including IronRuby tools for Visual Studio and compatibility with Ruby 1.9.2. Good times! &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.ironshay.com%2fpost%2fIronRuby-and-IronPython-are-Officially-Handed-Over-to-the-Community-IronRuby-Tools-for-VS-is-Out-and-More!.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.ironshay.com%2fpost%2fIronRuby-and-IronPython-are-Officially-Handed-Over-to-the-Community-IronRuby-Tools-for-VS-is-Out-and-More!.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/altnet/IronRuby_and_IronPython_to_run_by_the_Community_IR_Tools_for_VS</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/altnet/IronRuby_and_IronPython_to_run_by_the_Community_IR_Tools_for_VS</guid>
      <pubDate>Sat, 23 Oct 2010 17:15:52 GMT</pubDate>
    </item>
    <item>
      <title>Known Unknown of System Stored Procedure of sys.sp_tables</title>
      <description>Do you know even simple query like sys.tables can kill the performance of your system.

There are better thing to use: Read more... &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.sqlauthority.com%2f2010%2f10%2f17%2fsql-server-system-stored-procedure-sys-sp_tables%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.sqlauthority.com%2f2010%2f10%2f17%2fsql-server-system-stored-procedure-sys-sp_tables%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/database/Known_Unknown_of_System_Stored_Procedure_of_sys_sp_tables</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/database/Known_Unknown_of_System_Stored_Procedure_of_sys_sp_tables</guid>
      <pubDate>Mon, 18 Oct 2010 09:00:52 GMT</pubDate>
    </item>
    <item>
      <title>Silverlight: Embed IronRuby/DLR Scripting within XAML using IValueConv</title>
      <description>After I wrote the "Intro to IronRuby/DLR Scripting in C# Silverlight 4 Application" post, I came across an interesting series on embedding DLR scripts in XAML with WPF. This is an interesting series, although the code doesn't run in Silverlight, due to the fact that Silverlight is only a subset of WPF and doesn't support the System.Windows.Markup.MarkupExtension class. I test out a couple things in Silverlight, and I was able to get similar DLR scripting functionality working under Silverlight using a combination of a simple, custom IValueConverter and a custom UserControl class.
 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fpietschsoft.com%2fpost%2f2010%2f10%2f02%2fSilverlight-Embed-IronRubyDLR-Scripting-within-XAML-using-IValueConverter-and-Custom-UserControl.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fpietschsoft.com%2fpost%2f2010%2f10%2f02%2fSilverlight-Embed-IronRubyDLR-Scripting-within-XAML-using-IValueConverter-and-Custom-UserControl.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/silverlight/Silverlight_Embed_IronRuby_DLR_Scripting_within_XAML_using_IValueConv</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/silverlight/Silverlight_Embed_IronRuby_DLR_Scripting_within_XAML_using_IValueConv</guid>
      <pubDate>Sat, 02 Oct 2010 21:50:55 GMT</pubDate>
    </item>
    <item>
      <title>Dynamic XAP Discovery with Silverlight MEF </title>
      <description>What's missing, it seems, is a mechanism to dynamically discover the XAPs that are available on the server. If I'm using MEF to support a plug-in architecture, for example, I might want to drop a XAP containing a new plug-in into a folder on the server and have the plug-in automatically show up in my browser the next time the application runs.

MEF won't do that on its own, but it will if you lend it a helping hand. After discussing various ways to do dynamic discovery in MEF with Jeremy Likness, I wrote a sample to demonstrate a technique based on passing InitParams to the Silverlight control. The technique is pretty simple.

You begin by modifying the ASPX file that hosts your Silverlight application. First, you add an empty InitParams &amp;lt;params&amp;gt; element to the &amp;lt;object&amp;gt; element that instantiates the Silverlight control, and you include an ID and a runat=&amp;quot;server&amp;quot; attribute so you can manipulate the element from server-side code: &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.wintellect.com%2fCS%2fblogs%2fjprosise%2farchive%2f2010%2f06%2f17%2fdynamic-xap-discovery-with-silverlight-mef.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.wintellect.com%2fCS%2fblogs%2fjprosise%2farchive%2f2010%2f06%2f17%2fdynamic-xap-discovery-with-silverlight-mef.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/silverlight/Dynamic_XAP_Discovery_with_Silverlight_MEF</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/silverlight/Dynamic_XAP_Discovery_with_Silverlight_MEF</guid>
      <pubDate>Fri, 01 Oct 2010 03:03:13 GMT</pubDate>
    </item>
    <item>
      <title>Intro to IronRuby/DLR Scripting in C# Silverlight 4 Application</title>
      <description>I thought I'd share what I'm learning about adding IronRuby scripting to Silverlight 4 applications. I'm also focusing on C# as the host language, but the .NET object and methods used will be the same from VB.NET. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fpietschsoft.com%2fpost%2f2010%2f09%2f29%2fIntro-to-IronRubyDLR-Scripting-in-C-Silverlight-4-Application.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fpietschsoft.com%2fpost%2f2010%2f09%2f29%2fIntro-to-IronRubyDLR-Scripting-in-C-Silverlight-4-Application.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/silverlight/Intro_to_IronRuby_DLR_Scripting_in_C_Silverlight_4_Application</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/silverlight/Intro_to_IronRuby_DLR_Scripting_in_C_Silverlight_4_Application</guid>
      <pubDate>Wed, 29 Sep 2010 17:45:44 GMT</pubDate>
    </item>
    <item>
      <title>Embedding DLR Scripts in XAML- Part 2, A Simple DLR Markup Extension</title>
      <description>This article demonstrates how to embed DLR scripts in XAML using a custom MarkupExtension. The scripting language can be any language supported by the DLR, such as Python or Ruby.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.thinkbottomup.com.au%2fsite%2fblog%2fEmbedding_DLR_Scripts_in_XAML_Part_2"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.thinkbottomup.com.au%2fsite%2fblog%2fEmbedding_DLR_Scripts_in_XAML_Part_2" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wpf/Embedding_DLR_Scripts_in_XAML_Part_2_A_Simple_DLR_Markup_Extension</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wpf/Embedding_DLR_Scripts_in_XAML_Part_2_A_Simple_DLR_Markup_Extension</guid>
      <pubDate>Wed, 29 Sep 2010 16:30:20 GMT</pubDate>
    </item>
    <item>
      <title>Use New Bing Maps Road Imagery In Silverlight Map Control</title>
      <description>Recently the consumer facing Bing Maps site changed the map imagery  that is displayed for the Road map mode. This map imagery has not been officially made available for Bing Maps for Enterprise developers to use within their applications. The imagery is only officially available to the Bing Maps consumer website. Unofficially, you can still access the imagery if you know the URL format to get it. Below is an example of using the URL format for the new imagery to display it within the Bing Maps Silverlight Control. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fpietschsoft.com%2fpost%2f2010%2f08%2f19%2fUse-New-Bing-Maps-Road-Imagery-In-Silverlight-Map-Control-Unofficially-Unsupported.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fpietschsoft.com%2fpost%2f2010%2f08%2f19%2fUse-New-Bing-Maps-Road-Imagery-In-Silverlight-Map-Control-Unofficially-Unsupported.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/silverlight/Use_New_Bing_Maps_Road_Imagery_In_Silverlight_Map_Control</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/silverlight/Use_New_Bing_Maps_Road_Imagery_In_Silverlight_Map_Control</guid>
      <pubDate>Fri, 20 Aug 2010 01:20:54 GMT</pubDate>
    </item>
    <item>
      <title>Lookups in DataGrid and DataForm with RIA Services</title>
      <description>While off reading random blog posts on the tubes, I stumbled upon a post that describes a 101-level scenario of using lookup data in the DataGrid and DataForm with RIA Services.  The author was struggling to find a solution for the problem and was clearly frustrated. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fjeffhandley.com%2farchive%2f2010%2f03%2f12%2flookupdata.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fjeffhandley.com%2farchive%2f2010%2f03%2f12%2flookupdata.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/silverlight/Lookups_in_DataGrid_and_DataForm_with_RIA_Services</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/silverlight/Lookups_in_DataGrid_and_DataForm_with_RIA_Services</guid>
      <pubDate>Sun, 23 May 2010 11:23:15 GMT</pubDate>
    </item>
    <item>
      <title>Simplify, Shorten and Speed Up Your LINQ Statements with &amp;quot;Let&amp;quot;</title>
      <description>Details how using the &amp;quot;let&amp;quot; keyword can make your LINQ statements shorter and faster. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.nitriq.com%2fSimplifyShortenAndSpeedUpYourLINQStatementsWithLet.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.nitriq.com%2fSimplifyShortenAndSpeedUpYourLINQStatementsWithLet.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/tipsandtricks/Simplify_Shorten_and_Speed_Up_Your_LINQ_Statements_with_Let</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/tipsandtricks/Simplify_Shorten_and_Speed_Up_Your_LINQ_Statements_with_Let</guid>
      <pubDate>Wed, 12 May 2010 18:45:52 GMT</pubDate>
    </item>
    <item>
      <title>Announcing availability of Visual Studio 2010 and .NET Framework 4</title>
      <description>I am very excited to announce the availability of Visual Studio 2010 and .NET Framework 4 on April 12th. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblogs.msdn.com%2fsomasegar%2farchive%2f2010%2f04%2f11%2fannouncing-visual-studio-2010-and-net-framework-4.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblogs.msdn.com%2fsomasegar%2farchive%2f2010%2f04%2f11%2fannouncing-visual-studio-2010-and-net-framework-4.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/visualstudio/Announcing_availability_of_Visual_Studio_2010_and_NET_Framework_4</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/visualstudio/Announcing_availability_of_Visual_Studio_2010_and_NET_Framework_4</guid>
      <pubDate>Thu, 15 Apr 2010 14:00:01 GMT</pubDate>
    </item>
    <item>
      <title>MVC Portable Areas - Static Files as Embedded Resources</title>
      <description>This is the third post in a series related to build and deployment considerations as I've been exploring MVC Portable Areas. In the last post, I walked through a convention for managing static files.  In this post I'll discuss another approach to manage static files (e.g., images, css, js, etc.).  With this approach, you *also* compile the static files as embedded resources into the assembly similar to the *.aspx pages. Once again, you can set this to happen automatically by simply modifying your *.csproj file to include the desired extensions so you don't have to remember every time you add a file: &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fgeekswithblogs.net%2fmichelotti%2farchive%2f2010%2f04%2f05%2fmvc-portable-areas-ndash-static-files-as-embedded-resources.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fgeekswithblogs.net%2fmichelotti%2farchive%2f2010%2f04%2f05%2fmvc-portable-areas-ndash-static-files-as-embedded-resources.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/mvc/MVC_Portable_Areas_Static_Files_as_Embedded_Resources</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/mvc/MVC_Portable_Areas_Static_Files_as_Embedded_Resources</guid>
      <pubDate>Tue, 06 Apr 2010 12:31:39 GMT</pubDate>
    </item>
    <item>
      <title>World Shapefile Download and Upload to Database - Spatial Database</title>
      <description>This is very unique post and explains how to create Map of the world using Spatial Data &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.sqlauthority.com%2f2010%2f03%2f30%2fsql-server-world-shapefile-download-and-upload-to-database-spatial-database%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.sqlauthority.com%2f2010%2f03%2f30%2fsql-server-world-shapefile-download-and-upload-to-database-spatial-database%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/database/World_Shapefile_Download_and_Upload_to_Database_Spatial_Database</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/database/World_Shapefile_Download_and_Upload_to_Database_Spatial_Database</guid>
      <pubDate>Fri, 02 Apr 2010 16:15:02 GMT</pubDate>
    </item>
    <item>
      <title>How to Access Assembly Version Info in Silverlight</title>
      <description>I need to access the AssemblyVersion info from my assembly, and I was going to use something like this: Assembly.GetExecutingAssembly().GetName().Version; But, I see that GetName() is [SECURITY CRITICAL]. How can I get a hold of a Version object?? &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fforums.silverlight.net%2fforums%2ft%2f23321.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fforums.silverlight.net%2fforums%2ft%2f23321.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/silverlight/How_to_Access_Assembly_Version_Info_in_Silverlight</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/silverlight/How_to_Access_Assembly_Version_Info_in_Silverlight</guid>
      <pubDate>Wed, 24 Mar 2010 13:40:53 GMT</pubDate>
    </item>
  </channel>
</rss>
