<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>DucDigital &#187; C#</title>
	<atom:link href="http://www.ducdigital.com/tag/c/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ducdigital.com</link>
	<description>for ( $girl = 1; $girl &#60; $required; $girl++ ) { echo "I love DucDigital"; }</description>
	<lastBuildDate>Sat, 07 Aug 2010 09:12:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Memcached and Asp.net mvc</title>
		<link>http://www.ducdigital.com/2010/01/23/memcached-and-asp-net-mvc/</link>
		<comments>http://www.ducdigital.com/2010/01/23/memcached-and-asp-net-mvc/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 16:48:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Asp.net MVC]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[asp]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[csharp]]></category>
		<category><![CDATA[enyim memcached]]></category>
		<category><![CDATA[linq]]></category>
		<category><![CDATA[linq to sql]]></category>
		<category><![CDATA[memcache]]></category>
		<category><![CDATA[memcached]]></category>
		<category><![CDATA[MemcachedProviders]]></category>
		<category><![CDATA[mvc]]></category>

		<guid isPermaLink="false">http://www.ducdigital.com/?p=220</guid>
		<description><![CDATA[Today I was hanging around on Google and found a lot of useful stuff about Memcached and .net. Currently, I am using System.Web.Cache to cache objects for my webpage stuff. It's good, but not enough for scalable since it's often remove my object when run on low memory. So I go on with Memcached instead. [...]]]></description>
			<content:encoded><![CDATA[<p>Today I was hanging around on Google and found a lot of useful stuff about Memcached and .net. Currently, I am using System.Web.Cache to cache objects for my webpage stuff. It's good, but not enough for scalable since it's often remove my object when run on low memory.  So I go on with Memcached instead. I found a lot of library which could help us develop faster. Here are some library/solution that I found:</p>
<p><a href="http://ayende.com/Blog/archive/2008/06/06/Scratching-an-itch-NMemcached.aspx">http://ayende.com/Blog/archive/2008/06/06/Scratching-an-itch-NMemcached.aspx</a><br />
<a href="http://www.codeproject.com/KB/aspnet/memcached_aspnet.aspx">http://www.codeproject.com/KB/aspnet/memcached_aspnet.aspx</a><br />
<a href="http://maxi326.wordpress.com/2009/11/02/use-memcached-in-net-application-with-linq/">http://maxi326.wordpress.com/2009/11/02/use-memcached-in-net-application-with-linq/</a><br />
<a href="http://zvolkov.com/blog/post/2009/06/18/Using-MemCached-with-NHibernate.aspx">http://zvolkov.com/blog/post/2009/06/18/Using-MemCached-with-NHibernate.aspx</a><br />
<a href="http://latebound.blogspot.com/2008/10/using-memcached-from-c.html">http://latebound.blogspot.com/2008/10/using-memcached-from-c.html</a><br />
<a href="http://www.codeplex.com/memcachedproviders">http://www.codeplex.com/memcachedproviders</a><br />
<a href="http://code.google.com/p/beitmemcached/">http://code.google.com/p/beitmemcached/</a><br />
<a href="http://sourceforge.net/projects/memcacheddotnet/">http://sourceforge.net/projects/memcacheddotnet/</a><br />
<a href="http://www.codeplex.com/EnyimMemcached/">http://www.codeplex.com/EnyimMemcached/</a><br />
and the list go on...</p>
<p>What is MemCached? To put this in simple term, it's a cache store / hash table, where you can store almost everything, like objects, on it. Basically, it's very useful since there are parts where you don't want to cache your whole webpage but you just want to cache your object which you finished process or pulled out from database. It can save you hundreds of ms query time, server loads, and process time, which is very very very useful.</p>
<p>There are some downside if you run Memcached on Windows, <del datetime="2010-01-22T12:46:56+00:00">the latest update for Memcached for windows that i can found is 1.2.5</del><a href="http://blog.northscale.com/northscale-blog/2009/12/memcached-144-windows-32bit-binary-now-available.html"> I found a latest version here: 1.4.4</a>, and the lates for linux is 1.4.4 (at the time I write this post). There are some solution for this problem. By using another computer/server installed as linux, you can solely run Memcached for cache purpose on multiple server. If you are not having more than 1 server, then just fall back to use System.Web.Cache since it's quite good for production already. You can also try out Velocity, which currently on it's CTP and I am not sure about whether Microsoft going to charge users for this.</p>
<p>I suggest you use MemCached Provider, it's the simplest to implement memcached in asp.net mvc, the following web.config instruction provided by MemCached Provider</p>
<p>Open Web.config file and add the following section to configSections tag</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;section</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;cacheProvider&quot;</span></span>
<span style="color: #009900;"><span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;MemcachedProviders.Cache.CacheProviderSection, MemcachedProviders&quot;</span></span>
<span style="color: #009900;"><span style="color: #000066;">allowDefinition</span>=<span style="color: #ff0000;">&quot;MachineToApplication&quot;</span> <span style="color: #000066;">restartOnExternalChanges</span>=<span style="color: #ff0000;">&quot;true&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;sectiongroup</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;enyim.com&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;section</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;memcached&quot;</span></span>
<span style="color: #009900;"><span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;Enyim.Caching.Configuration.MemcachedClientSection, Enyim.Caching&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/sectiongroup<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;section</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;log4net&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;log4net.Config.Log4NetConfigurationSectionHandler,log4net&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span></pre></div></div>

<p>Add the following section to configure Enyim’s client to point to Memcached servers</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;enyim</span> .com<span style="color: #000000; font-weight: bold;">&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;memcached<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;servers<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #808080; font-style: italic;">&lt;!-- put your own server(s) here--&gt;</span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;add</span> <span style="color: #000066;">address</span>=<span style="color: #ff0000;">&quot;127.0.0.1&quot;</span> <span style="color: #000066;">port</span>=<span style="color: #ff0000;">&quot;11211&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/servers<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;socketpool</span> <span style="color: #000066;">minPoolSize</span>=<span style="color: #ff0000;">&quot;10&quot;</span> <span style="color: #000066;">maxPoolSize</span>=<span style="color: #ff0000;">&quot;100&quot;</span></span>
<span style="color: #009900;"><span style="color: #000066;">connectionTimeout</span>=<span style="color: #ff0000;">&quot;00:00:10&quot;</span> <span style="color: #000066;">deadTimeout</span>=<span style="color: #ff0000;">&quot;00:02:00&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/memcached<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/enyim<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

<p>Add the following section to configure Memcached Cache Provider. keySuffix attribute allows for adding suffix to cache provider keys  in order to simulate namespaces.</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;cacheprovider</span> <span style="color: #000066;">defaultProvider</span>=<span style="color: #ff0000;">&quot;MemcachedCacheProvider&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;providers<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;add</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;MemcachedCacheProvider&quot;</span></span>
<span style="color: #009900;"><span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;MemcachedProviders.Cache.MemcachedCacheProvider, MemcachedProviders&quot;</span></span>
<span style="color: #009900;"><span style="color: #000066;">keySuffix</span>=<span style="color: #ff0000;">&quot;_MySuffix_&quot;</span> <span style="color: #000066;">defaultExpireTime</span>=<span style="color: #ff0000;">&quot;2000&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/providers<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/cacheprovider<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

<p> Add following section to configure log4net</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;log4net<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #808080; font-style: italic;">&lt;!-- Define some output appenders --&gt;</span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;appender</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;ConsoleAppender&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;log4net.Appender.ConsoleAppender&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;layout</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;log4net.Layout.PatternLayout&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;conversionpattern</span> <span style="color: #000066;">value</span>=<span style="color: #ff0000;">&quot;%date [%thread] %-5level %logger [%property{NDC}]</span>
<span style="color: #009900;">- %message%newline&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/layout<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/appender<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #808080; font-style: italic;">&lt;!--&lt;threshold value=&quot;OFF&quot; /&gt;--&gt;</span>
<span style="color: #808080; font-style: italic;">&lt;!-- Setup the root category, add the appenders and set the default priority --&gt;</span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;root<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;priority</span> <span style="color: #000066;">value</span>=<span style="color: #ff0000;">&quot;WARN&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;appender</span> -ref <span style="color: #000066;">ref</span>=<span style="color: #ff0000;">&quot;ConsoleAppender&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;filter</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;log4net.Filter.LevelRangeFilter&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;levelmin</span> <span style="color: #000066;">value</span>=<span style="color: #ff0000;">&quot;WARN&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;levelmax</span> <span style="color: #000066;">value</span>=<span style="color: #ff0000;">&quot;FATAL&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/filter<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/appender<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/root<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/log4net<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

<p>Provided you include all the reference libraries, for example, this is my category controller, which will cache the object if it's not existed in the MemCached's memory.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
</pre></td><td class="code"><pre class="csharp" style="font-family:monospace;">        <span style="color: #0600FF;">public</span> ActionResult Category<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>
        <span style="color: #000000;">&#123;</span>
            var returnObj <span style="color: #008000;">=</span> DistCache.<span style="color: #0000FF;">Get</span><span style="color: #008000;">&lt;</span>list <span style="color: #008000;">&lt;</span>CategoryObject<span style="color: #008000;">&gt;&gt;</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;fullCatListObject&quot;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
            <span style="color: #0600FF;">if</span> <span style="color: #000000;">&#40;</span>returnObj <span style="color: #008000;">==</span> <span style="color: #0600FF;">null</span><span style="color: #000000;">&#41;</span>
            <span style="color: #000000;">&#123;</span>
                P015.<span style="color: #0000FF;">Modules</span>.<span style="color: #0000FF;">Categories</span>.<span style="color: #0000FF;">Categories</span> _cat <span style="color: #008000;">=</span> <span style="color: #008000;">new</span> P015.<span style="color: #0000FF;">Modules</span>.<span style="color: #0000FF;">Categories</span>.<span style="color: #0000FF;">Categories</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
                returnObj <span style="color: #008000;">=</span> _cat.<span style="color: #0000FF;">getCatObject</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
                DistCache.<span style="color: #0000FF;">Add</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;fullCatListObject&quot;</span>, returnObj, <span style="color: #008000;">new</span> TimeSpan<span style="color: #000000;">&#40;</span><span style="color: #FF0000;">29</span>, <span style="color: #FF0000;">0</span>, <span style="color: #FF0000;">0</span>, <span style="color: #FF0000;">0</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
            <span style="color: #000000;">&#125;</span>
            <span style="color: #0600FF;">return</span> View<span style="color: #000000;">&#40;</span>returnObj<span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
        <span style="color: #000000;">&#125;</span>
<span style="color: #008000;">&lt;/</span>list<span style="color: #008000;">&gt;</span></pre></td></tr></table></div>

<p>One thing you need to remember when using this library is to have all your objects that you want to save in memcached serialized. For example, this is my CategoryObject class use for the above example:</p>
<p>CategoryObject.cs</p>

<div class="wp_syntax"><div class="code"><pre class="csharp" style="font-family:monospace;">    <span style="color: #000000;">&#91;</span>Serializable<span style="color: #000000;">&#93;</span>
    <span style="color: #0600FF;">public</span> <span style="color: #FF0000;">class</span> CategoryObject
    <span style="color: #000000;">&#123;</span>
        <span style="color: #0600FF;">public</span> <span style="color: #FF0000;">string</span> CAT_NAME <span style="color: #000000;">&#123;</span> get<span style="color: #008000;">;</span> set<span style="color: #008000;">;</span> <span style="color: #000000;">&#125;</span>
        <span style="color: #0600FF;">public</span> <span style="color: #FF0000;">int</span> CAT_ID <span style="color: #000000;">&#123;</span> get<span style="color: #008000;">;</span> set<span style="color: #008000;">;</span> <span style="color: #000000;">&#125;</span>
        <span style="color: #0600FF;">public</span> <span style="color: #FF0000;">int</span> LEVEL <span style="color: #000000;">&#123;</span> get<span style="color: #008000;">;</span> set<span style="color: #008000;">;</span> <span style="color: #000000;">&#125;</span>
    <span style="color: #000000;">&#125;</span></pre></div></div>

<p>In case you are using Linq, or more specific, linq to sql, you can open your DBML file in design mode, change the <em>Serialize Mode</em> option to <strong>Unidirectional</strong>.</p>
<p>This works for me, so it should works for you too. Enjoy <img src='http://www.ducdigital.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.ducdigital.com%2F2010%2F01%2F23%2Fmemcached-and-asp-net-mvc%2F&amp;linkname=Memcached%20and%20Asp.net%20mvc"><img src="http://www.ducdigital.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.ducdigital.com/2010/01/23/memcached-and-asp-net-mvc/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Cache individual object in asp.net mvc</title>
		<link>http://www.ducdigital.com/2010/01/14/cache-individual-object-in-asp-net-mvc/</link>
		<comments>http://www.ducdigital.com/2010/01/14/cache-individual-object-in-asp-net-mvc/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 05:37:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Asp.net MVC]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[controller]]></category>
		<category><![CDATA[csharp]]></category>
		<category><![CDATA[httpcontext]]></category>
		<category><![CDATA[linq to sql]]></category>
		<category><![CDATA[linq2sql]]></category>
		<category><![CDATA[mvc]]></category>
		<category><![CDATA[object]]></category>
		<category><![CDATA[oop]]></category>
		<category><![CDATA[outputcache]]></category>
		<category><![CDATA[query]]></category>
		<category><![CDATA[sap.net mvc]]></category>
		<category><![CDATA[sql]]></category>

		<guid isPermaLink="false">http://www.ducdigital.com/?p=218</guid>
		<description><![CDATA[Upon writing a controller for exporting image on the fly, I struggled with the problem that: "Output cache does not cache HttpHeader (in this case, "Location" header)". Which lead me to despair since each time i called the controller to output image, it will have to connect to database and do a couple of query, [...]]]></description>
			<content:encoded><![CDATA[<p>Upon writing a controller for exporting image on the fly, I struggled with the problem that: "Output cache does not cache HttpHeader (in this case, "Location" header)". Which lead me to despair since each time i called the controller to output image, it will have to connect to database and do a couple of query, which is not practical in real life. So finally, i found out that i can easily cache objects into a cache provider in Asp.net Mvc. Very useful, all my queries go back to 0 (traced through Ling2sql profiler). </p>
<p>You can use this piece of code in anywhere of your code where you want to cache any object.<br />
(Notice: this code was used in a controller, so I used HttpContext.Cache. But if you use else where that make this code not working, try HttpContext.Current.Cache)</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
</pre></td><td class="code"><pre class="csharp" style="font-family:monospace;">            <span style="color: #0600FF;">if</span> <span style="color: #000000;">&#40;</span>HttpContext.<span style="color: #0000FF;">Cache</span><span style="color: #000000;">&#91;</span><span style="color: #666666;">&quot;ObjName&quot;</span><span style="color: #000000;">&#93;</span> <span style="color: #008000;">!=</span> <span style="color: #0600FF;">null</span><span style="color: #000000;">&#41;</span>
            <span style="color: #000000;">&#123;</span>
                link <span style="color: #008000;">=</span> <span style="color: #000000;">&#40;</span><span style="color: #FF0000;">string</span><span style="color: #000000;">&#41;</span>HttpContext.<span style="color: #0000FF;">Cache</span><span style="color: #000000;">&#91;</span><span style="color: #666666;">&quot;ObjName&quot;</span><span style="color: #000000;">&#93;</span><span style="color: #008000;">;</span>
                <span style="color: #0600FF;">return</span> link<span style="color: #008000;">;</span>
            <span style="color: #000000;">&#125;</span>
            <span style="color: #0600FF;">else</span>
            <span style="color: #000000;">&#123;</span>
                HttpContext.<span style="color: #0000FF;">Cache</span>.<span style="color: #0000FF;">Add</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;ObjName&quot;</span>, link, <span style="color: #0600FF;">null</span>, <span style="color: #000000;">System.<span style="color: #0000FF;">Web</span>.<span style="color: #0000FF;">Caching</span></span>.<span style="color: #0000FF;">Cache</span>.<span style="color: #0000FF;">NoAbsoluteExpiration</span>, <span style="color: #008000;">new</span> TimeSpan<span style="color: #000000;">&#40;</span><span style="color: #FF0000;">30</span>, <span style="color: #FF0000;">0</span>, <span style="color: #FF0000;">0</span>, <span style="color: #FF0000;">0</span>, <span style="color: #FF0000;">0</span><span style="color: #000000;">&#41;</span>, <span style="color: #000000;">System.<span style="color: #0000FF;">Web</span>.<span style="color: #0000FF;">Caching</span></span>.<span style="color: #0000FF;">CacheItemPriority</span>.<span style="color: #0000FF;">High</span>, <span style="color: #0600FF;">null</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
                <span style="color: #0600FF;">return</span> link<span style="color: #008000;">;</span>
            <span style="color: #000000;">&#125;</span></pre></td></tr></table></div>

<p>What it did was to check if the ObjName exist in the context, if not, create one and dump the data into it. Remember when you call back from HttpContext, it's an object so you always need a cast. If you don't know about argument, let the intellisense do the work for you.</p>
<p>Time to exand further about the topic: <a href="http://msdn.microsoft.com/en-us/library/system.web.caching.cache.add(VS.80).aspxx">HttpContext.Cache.Add</a></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.ducdigital.com%2F2010%2F01%2F14%2Fcache-individual-object-in-asp-net-mvc%2F&amp;linkname=Cache%20individual%20object%20in%20asp.net%20mvc"><img src="http://www.ducdigital.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.ducdigital.com/2010/01/14/cache-individual-object-in-asp-net-mvc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Automatic highlight menu for asp.net mvc.</title>
		<link>http://www.ducdigital.com/2010/01/12/automatic-highlight-menu-for-asp-net-mvc/</link>
		<comments>http://www.ducdigital.com/2010/01/12/automatic-highlight-menu-for-asp-net-mvc/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 07:53:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Asp.net MVC]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[automatic]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[dry]]></category>
		<category><![CDATA[extension]]></category>
		<category><![CDATA[helper]]></category>
		<category><![CDATA[highlight]]></category>
		<category><![CDATA[htmlHelper]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[mvc]]></category>
		<category><![CDATA[sidebar]]></category>
		<category><![CDATA[view]]></category>

		<guid isPermaLink="false">http://www.ducdigital.com/?p=215</guid>
		<description><![CDATA[For a while now I've been wondering how to work out with the menu, so that it can automatic highlight with the least amount of code. So after a while, i come up with this. There are some part which I used the language helper I wrote in previous post. Just go ahead and replace [...]]]></description>
			<content:encoded><![CDATA[<p>For a while now I've been wondering how to work out with the menu, so that it can automatic highlight with the least amount of code. So after a while, i come up with this. There are some part which I used the language helper I <a href="http://www.ducdigital.com/2010/01/10/noob-guide-to-globalization-in-asp-net-mvc/">wrote in previous post</a>. Just go ahead and replace it to whatever that suit your needs.</p>
<p>This one i place on top of my Partial that contain the menu to get the action and controller, so that i can pass this to the extension.</p>

<div class="wp_syntax"><div class="code"><pre class="csharp" style="font-family:monospace;">    <span style="color: #008000;">&lt;</span> <span style="color: #008000;">%</span>  <span style="color: #FF0000;">string</span> currentAction <span style="color: #008000;">=</span> ViewContext.<span style="color: #0000FF;">RouteData</span>.<span style="color: #0000FF;">Values</span><span style="color: #000000;">&#91;</span><span style="color: #666666;">&quot;action&quot;</span><span style="color: #000000;">&#93;</span>.<span style="color: #0000FF;">ToString</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
        <span style="color: #FF0000;">string</span> currentController <span style="color: #008000;">=</span> ViewContext.<span style="color: #0000FF;">RouteData</span>.<span style="color: #0000FF;">Values</span><span style="color: #000000;">&#91;</span><span style="color: #666666;">&quot;controller&quot;</span><span style="color: #000000;">&#93;</span>.<span style="color: #0000FF;">ToString</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span> <span style="color: #008000;">%&gt;</span></pre></div></div>

<p>This is the sidebar Item, basically this will generate a "li" tag with a link and your custom class to indicate whether the link is currently used in the page / highlight. There is a if check in this method, it check for both current action and method if it actually fit the link.<br />
so if you are doing a higher level menu item, in this case, a controller menu, you can just simply compare the controller instead of both.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
</pre></td><td class="code"><pre class="csharp" style="font-family:monospace;">    <span style="color: #0600FF;">public</span> <span style="color: #0600FF;">static</span> <span style="color: #FF0000;">string</span> SidebarItem<span style="color: #000000;">&#40;</span><span style="color: #0600FF;">this</span> <span style="color: #000000;">System.<span style="color: #0000FF;">Web</span></span>.<span style="color: #0000FF;">Mvc</span>.<span style="color: #0000FF;">HtmlHelper</span> html, <span style="color: #FF0000;">string</span> currentAction, <span style="color: #FF0000;">string</span> currentController, <span style="color: #FF0000;">string</span> action, <span style="color: #FF0000;">string</span> controller, <span style="color: #FF0000;">string</span> languageKey, <span style="color: #0600FF;">params</span> <span style="color: #FF0000;">object</span><span style="color: #000000;">&#91;</span><span style="color: #000000;">&#93;</span> args<span style="color: #000000;">&#41;</span>
    <span style="color: #000000;">&#123;</span>
        TagBuilder tb <span style="color: #008000;">=</span> <span style="color: #008000;">new</span> TagBuilder<span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;li&quot;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
        <span style="color: #0600FF;">if</span> <span style="color: #000000;">&#40;</span><span style="color: #FF0000;">string</span>.<span style="color: #0000FF;">Equals</span><span style="color: #000000;">&#40;</span>currentAction, action, StringComparison.<span style="color: #0000FF;">OrdinalIgnoreCase</span><span style="color: #000000;">&#41;</span> <span style="color: #008000;">&amp;&amp;</span> <span style="color: #FF0000;">string</span>.<span style="color: #0000FF;">Equals</span><span style="color: #000000;">&#40;</span>currentController, controller, StringComparison.<span style="color: #0000FF;">OrdinalIgnoreCase</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span>
        <span style="color: #000000;">&#123;</span>
            tb.<span style="color: #0000FF;">GenerateId</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;activemenu&quot;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
        <span style="color: #000000;">&#125;</span>
        <span style="color: #FF0000;">string</span> text <span style="color: #008000;">=</span> html.<span style="color: #0000FF;">Language</span><span style="color: #000000;">&#40;</span>languageKey, args<span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
        <span style="color: #FF0000;">string</span> link <span style="color: #008000;">=</span> html.<span style="color: #0000FF;">ActionLink</span><span style="color: #000000;">&#40;</span>text, action, controller<span style="color: #000000;">&#41;</span>.<span style="color: #0000FF;">ToHtmlString</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
        tb.<span style="color: #0000FF;">SetInnerText</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;{0}&quot;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
        <span style="color: #0600FF;">return</span> <span style="color: #FF0000;">String</span>.<span style="color: #0000FF;">Format</span><span style="color: #000000;">&#40;</span>tb.<span style="color: #0000FF;">ToString</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>, <span style="color: #666666;">&quot;&lt;span&gt;&quot;</span><span style="color: #008000;">+</span>link<span style="color: #008000;">+</span><span style="color: #666666;">&quot;&lt;/span&gt;&quot;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
    <span style="color: #000000;">&#125;</span></pre></td></tr></table></div>

<p>And here is the actual sample usage of the code above:</p>

<div class="wp_syntax"><div class="code"><pre class="csharp" style="font-family:monospace;">    <span style="color: #008000;">&lt;</span> <span style="color: #008000;">%=</span> Html.<span style="color: #0000FF;">SidebarItem</span><span style="color: #000000;">&#40;</span>currentAction, currentController, <span style="color: #666666;">&quot;index&quot;</span>, <span style="color: #666666;">&quot;home&quot;</span>, <span style="color: #666666;">&quot;index&quot;</span><span style="color: #000000;">&#41;</span> <span style="color: #008000;">%&gt;</span></pre></div></div>

<p>This help a lot when you create a menu that can automatic indicate whether you are in that page or not.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.ducdigital.com%2F2010%2F01%2F12%2Fautomatic-highlight-menu-for-asp-net-mvc%2F&amp;linkname=Automatic%20highlight%20menu%20for%20asp.net%20mvc."><img src="http://www.ducdigital.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.ducdigital.com/2010/01/12/automatic-highlight-menu-for-asp-net-mvc/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Builtin Async Controller in ASP.net MVC 2</title>
		<link>http://www.ducdigital.com/2009/12/24/builtin-async-controller-in-asp-net-mvc-2/</link>
		<comments>http://www.ducdigital.com/2009/12/24/builtin-async-controller-in-asp-net-mvc-2/#comments</comments>
		<pubDate>Thu, 24 Dec 2009 02:00:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Asp.net MVC]]></category>
		<category><![CDATA[action]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[async]]></category>
		<category><![CDATA[Asynchronous]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[controller]]></category>
		<category><![CDATA[mvc]]></category>

		<guid isPermaLink="false">http://www.ducdigital.com/?p=196</guid>
		<description><![CDATA[Well, it's Christmas Eve at the time I post this post in my place. I hope you enjoy your Christmas with your family and happy new year to all of you who read this post of mine. ------------------------ One thing that make me feel more powerful when using ASP.net MVC is the newly introduce Asynchronous [...]]]></description>
			<content:encoded><![CDATA[<p>Well, it's Christmas Eve at the time I post this post in my place. I hope you enjoy your Christmas with your family and happy new year to all of you who read this post of mine.</p>
<p>------------------------</p>
<p>One thing that make me feel more powerful when using ASP.net MVC is the newly introduce Asynchronous Controller Action. </p>
<p>Imagine, you have a front page with multiple widget, like news, weather, personal information, new forum thread etc... You are going to run it from top to bottom, query, query... Your basic solution for this is to query news first since it's kinda important, then weather, etc...</p>
<p><strong>Why it's not a good solution?</strong> Because if you going to query everything like that, your program need to wait for each query to finish before continue to work with the code behind...</p>
<p><strong>Better Solution?</strong> I could suggest you using Async Controller in this case. Separate each query into different Data Context, query to the database, Close Current Data Context, and process the info with code behind, separately and process at the same time. This helps you bring down processing time twice or thrice as fast than the normal approach...</p>
<p>Asynchronous Process has been introduce to ASP.net long before, but now, apply it to asp.net MVC even easier than what you really expect.</p>
<ul>
<li>Inherit to "AsyncController" instead of "Controller" class</li>
<li>Write async method</li>
<li>Write Complete method</li>
<li>Write functions to handle async request</li>
</ul>
<p>First step:</p>
<p>Look out for the head of your controller, you will always see this:</p>

<div class="wp_syntax"><div class="code"><pre class="csharp" style="font-family:monospace;"><span style="color: #0600FF;">public</span> <span style="color: #FF0000;">class</span> MyController <span style="color: #008000;">:</span> Controller</pre></div></div>

<p>change it to:</p>

<div class="wp_syntax"><div class="code"><pre class="csharp" style="font-family:monospace;"><span style="color: #0600FF;">public</span> <span style="color: #FF0000;">class</span> MyController <span style="color: #008000;">:</span> AsyncController</pre></div></div>

<p>Don't worry because everything will work just as normal even if you don't use AsyncController.</p>
<p>2nd Step, write the MethodAsync and MethodCompleted. The important is the prefix in this case, Async and Completed. </p>
<ul>
<li><strong>Method </strong>is the action name, like Create, Delete, Details</li>
<li><strong>Async </strong>is in Void type, and everything request first will come to this void method, you can get the input from form, url here in this method. Async will pass parameter to Completed using <strong>AsyncManager.Parameter</strong>s that you can see later in this article</li>
<li><strong>Completed </strong> is an ActionResult method. just like your normal Create, Delete action. You can return a View or RedirectResult here. The param of this method corresponding to the <em>AsyncManager.Parameter </em>that was used in <em>MethodAsync</em></li>
</ul>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
</pre></td><td class="code"><pre class="csharp" style="font-family:monospace;">&nbsp;
<span style="color: #008080; font-style: italic;">// Http://local/Controller/Method/</span>
<span style="color: #008080; font-style: italic;">// As you can see i am using the attribute that can be use in the normal Actions</span>
<span style="color: #000000;">&#91;</span>AcceptVerbs<span style="color: #000000;">&#40;</span>HttpVerbs.<span style="color: #0000FF;">Post</span><span style="color: #000000;">&#41;</span>, ActionName<span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;Method&quot;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#93;</span>
&nbsp;
<span style="color: #0600FF;">public</span> <span style="color: #0600FF;">void</span> MethodAsync<span style="color: #000000;">&#40;</span><span style="color: #FF0000;">int</span> id, <span style="color: #FF0000;">string</span> hello<span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span>
&nbsp;
	<span style="color: #008080; font-style: italic;">// This Increment() use to identify how many async process are there, </span>
	<span style="color: #008080; font-style: italic;">// once everything is back to 0, MethodCompleted is fire-up</span>
&nbsp;
	AsyncManager.<span style="color: #0000FF;">OutstandingOperations</span>.<span style="color: #0000FF;">Increment</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
&nbsp;
	<span style="color: #008080; font-style: italic;">// This used to handle functions that are not Async Ready</span>
    <span style="color: #008080; font-style: italic;">// since they don't have any async event ready.</span>
	<span style="color: #008080; font-style: italic;">// using this you can start with any method.</span>
&nbsp;
	<span style="color: #008080; font-style: italic;">// the first int, string is the parameter data type, the last bool is the return type.</span>
	<span style="color: #008080; font-style: italic;">// DoTestAsync is the method name that we going to write later on</span>
&nbsp;
    Func<span style="color: #008000;">&lt;</span><span style="color: #FF0000;">int</span> , <span style="color: #FF0000;">string</span>, <span style="color: #FF0000;">bool</span><span style="color: #008000;">&gt;</span> doTestHandler <span style="color: #008000;">=</span> DoTestAsync<span style="color: #008000;">;</span>
&nbsp;
	<span style="color: #008080; font-style: italic;">// Begin async</span>
	<span style="color: #008080; font-style: italic;">// ID, Hello is the param passing to method DoTestAsync</span>
    doTestHandler.<span style="color: #0000FF;">BeginInvoke</span><span style="color: #000000;">&#40;</span>id, hello, ar <span style="color: #008000;">=&gt;</span>
    <span style="color: #000000;">&#123;</span>
&nbsp;
        var handler <span style="color: #008000;">=</span> <span style="color: #000000;">&#40;</span>Func<span style="color: #008000;">&lt;/</span><span style="color: #FF0000;">int</span><span style="color: #008000;">&gt;&lt;</span><span style="color: #FF0000;">int</span> , <span style="color: #FF0000;">string</span>, <span style="color: #FF0000;">bool</span><span style="color: #008000;">&gt;</span><span style="color: #000000;">&#41;</span>ar.<span style="color: #0000FF;">AsyncState</span><span style="color: #008000;">;</span>
&nbsp;
		<span style="color: #008080; font-style: italic;">// AsyncManager.Parameters[&quot;returned&quot;] now cantaining the result of </span>
		<span style="color: #008080; font-style: italic;">// method DoTestAsync after finish the process. The datatype is bool.</span>
        AsyncManager.<span style="color: #0000FF;">Parameters</span><span style="color: #000000;">&#91;</span><span style="color: #666666;">&quot;returned&quot;</span><span style="color: #000000;">&#93;</span> <span style="color: #008000;">=</span> handler.<span style="color: #0000FF;">EndInvoke</span><span style="color: #000000;">&#40;</span>ar<span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
&nbsp;
        AsyncManager.<span style="color: #0000FF;">OutstandingOperations</span>.<span style="color: #0000FF;">Decrement</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
    <span style="color: #000000;">&#125;</span>, doTagHandler<span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
<span style="color: #000000;">&#125;</span>
&nbsp;
<span style="color: #008080; font-style: italic;">// This will process after the Async finished. The param of</span>
<span style="color: #008080; font-style: italic;">// this method is what we have used with AsyncManager.Parameters,</span>
<span style="color: #008080; font-style: italic;">// in this case, returned with type bool</span>
<span style="color: #0600FF;">public</span> ActionResult MethodCompleted<span style="color: #000000;">&#40;</span><span style="color: #FF0000;">bool</span> returned<span style="color: #000000;">&#41;</span>
<span style="color: #000000;">&#123;</span>
	<span style="color: #008080; font-style: italic;">// You can actually make use of the param here to make some ViewData or something</span>
	returned <span style="color: #008000;">=</span> <span style="color: #008000;">!</span>returned<span style="color: #008000;">;</span>
&nbsp;
    <span style="color: #008080; font-style: italic;">// Since it's a ActionResult, i must return a View or something related.</span>
	<span style="color: #008080; font-style: italic;">// return View(); -&gt; will use the default view (Controller\Method.aspx)</span>
&nbsp;
	<span style="color: #008080; font-style: italic;">// i want to show some Content:</span>
	<span style="color: #0600FF;">return</span> Content<span style="color: #000000;">&#40;</span>returned.<span style="color: #0000FF;">ToString</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
&nbsp;
<span style="color: #000000;">&#125;</span>
&nbsp;
<span style="color: #008080; font-style: italic;">// Now we will write the method for our async controller </span>
<span style="color: #0600FF;">public</span> <span style="color: #FF0000;">bool</span> DoTestAsync<span style="color: #000000;">&#40;</span><span style="color: #FF0000;">int</span> a, <span style="color: #FF0000;">string</span> b<span style="color: #000000;">&#41;</span>
<span style="color: #000000;">&#123;</span>
	<span style="color: #008080; font-style: italic;">// Everything you need to do with the param in here, </span>
	<span style="color: #008080; font-style: italic;">// include query to your database or anything you can</span>
	<span style="color: #008080; font-style: italic;">// posibly think of. For me, i will just return something.</span>
&nbsp;
	<span style="color: #0600FF;">return</span> true<span style="color: #008000;">;</span>
<span style="color: #000000;">&#125;</span>
<span style="color: #008000;">&lt;/</span><span style="color: #FF0000;">int</span><span style="color: #008000;">&gt;</span></pre></td></tr></table></div>

<p>The result of this is:</p>
<pre>
"False"
</pre>
<p>Isn't it simple, what you need is just to follow this and there you go, you can now have a Web application that run twice or thrice as fast.</p>
<p>Good luck...</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.ducdigital.com%2F2009%2F12%2F24%2Fbuiltin-async-controller-in-asp-net-mvc-2%2F&amp;linkname=Builtin%20Async%20Controller%20in%20ASP.net%20MVC%202"><img src="http://www.ducdigital.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.ducdigital.com/2009/12/24/builtin-async-controller-in-asp-net-mvc-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Query a set of IDs from SQL using LINQ to SQL</title>
		<link>http://www.ducdigital.com/2009/12/11/query-a-set-of-ids-from-sql-using-linq-to-sql/</link>
		<comments>http://www.ducdigital.com/2009/12/11/query-a-set-of-ids-from-sql-using-linq-to-sql/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 06:11:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[C# csharp]]></category>
		<category><![CDATA[linq]]></category>
		<category><![CDATA[linq to sql]]></category>
		<category><![CDATA[mssql]]></category>
		<category><![CDATA[query]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[where]]></category>

		<guid isPermaLink="false">http://www.ducdigital.com/?p=144</guid>
		<description><![CDATA[Just not so long ago, I have a hard time while doing this in LINQ to SQL since i have my datacontext running on LINQ to SQL. I was force to do a N+1 querry, which is extremely expensive on both CPU and Time since i put my SQL Server else where that not in [...]]]></description>
			<content:encoded><![CDATA[<p>Just not so long ago, I have a hard time while doing this in LINQ to SQL since i have my datacontext running on LINQ to SQL. I was force to do a N+1 querry, which is extremely expensive on both CPU and Time since i put my SQL Server else where that not in local and each query cost me 200ms in time.</p>
<p>My N+1 query was look like this:</p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;"><span style="color: #993333; font-weight: bold;">SELECT</span> <span style="color: #66cc66;">*</span> <span style="color: #993333; font-weight: bold;">FROM</span> Image <span style="color: #993333; font-weight: bold;">WHERE</span> IMG_ID <span style="color: #66cc66;">=</span> <span style="color: #cc66cc;">1</span>
<span style="color: #993333; font-weight: bold;">SELECT</span> <span style="color: #66cc66;">*</span> <span style="color: #993333; font-weight: bold;">FROM</span> Image <span style="color: #993333; font-weight: bold;">WHERE</span> IMG_ID <span style="color: #66cc66;">=</span> <span style="color: #cc66cc;">3</span>
<span style="color: #993333; font-weight: bold;">SELECT</span> <span style="color: #66cc66;">*</span> <span style="color: #993333; font-weight: bold;">FROM</span> Image <span style="color: #993333; font-weight: bold;">WHERE</span> IMG_ID <span style="color: #66cc66;">=</span> <span style="color: #cc66cc;">7</span>
<span style="color: #993333; font-weight: bold;">SELECT</span> <span style="color: #66cc66;">*</span> <span style="color: #993333; font-weight: bold;">FROM</span> Image <span style="color: #993333; font-weight: bold;">WHERE</span> IMG_ID <span style="color: #66cc66;">=</span> <span style="color: #cc66cc;">9</span></pre></div></div>

<p>however, later i found out a way to solve this by using "<strong>Contains</strong>" from <strong><a href="http://msdn.microsoft.com/en-us/library/system.collections.ilist.aspx">IList </a></strong>to query <strong>"WHERE IN(x,x,x)".</strong></p>
<p>Here is one function in my Repository:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
</pre></td><td class="code"><pre class="csharp" style="font-family:monospace;"><span style="color: #0600FF;">public</span> List<span style="color: #008000;">&lt;</span>Image<span style="color: #008000;">&gt;</span> Images<span style="color: #000000;">&#40;</span>IList<span style="color: #008000;">&lt;</span><span style="color: #FF0000;">int</span><span style="color: #008000;">&gt;</span> idList<span style="color: #000000;">&#41;</span>
<span style="color: #000000;">&#123;</span>
     <span style="color: #0600FF;">return</span> <span style="color: #000000;">&#40;</span>from d <span style="color: #0600FF;">in</span> _db.<span style="color: #0000FF;">Images</span>
               .<span style="color: #0000FF;">Where</span><span style="color: #008000;">&lt;</span>Image<span style="color: #008000;">&gt;</span><span style="color: #000000;">&#40;</span>d <span style="color: #008000;">=&gt;</span> idList.<span style="color: #0000FF;">Contains</span><span style="color: #008000;">&lt;</span><span style="color: #FF0000;">int</span><span style="color: #008000;">&gt;</span><span style="color: #000000;">&#40;</span>d.<span style="color: #0000FF;">IMG_ID</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span>
               select d<span style="color: #000000;">&#41;</span>.<span style="color: #0000FF;">ToList</span><span style="color: #008000;">&lt;</span>Image<span style="color: #008000;">&gt;</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
<span style="color: #000000;">&#125;</span></pre></td></tr></table></div>

<p>or better:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="csharp" style="font-family:monospace;"> <span style="color: #0600FF;">return</span> _db.<span style="color: #0000FF;">Images</span>.<span style="color: #0000FF;">Where</span><span style="color: #008000;">&lt;</span>Image<span style="color: #008000;">&gt;</span><span style="color: #000000;">&#40;</span>x <span style="color: #008000;">=&gt;</span> idList.<span style="color: #0000FF;">Contains</span><span style="color: #008000;">&lt;</span><span style="color: #FF0000;">int</span><span style="color: #008000;">&gt;</span><span style="color: #000000;">&#40;</span>x.<span style="color: #0000FF;">IMG_ID</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span>.<span style="color: #0000FF;">ToList</span><span style="color: #008000;">&lt;</span>Image<span style="color: #008000;">&gt;</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span></pre></td></tr></table></div>

<p>these will output:</p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;"><span style="color: #993333; font-weight: bold;">SELECT</span> <span style="color: #66cc66;">*</span> <span style="color: #993333; font-weight: bold;">FROM</span> Image <span style="color: #993333; font-weight: bold;">WHERE</span> IMG_ID <span style="color: #993333; font-weight: bold;">IN</span><span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">1</span><span style="color: #66cc66;">,</span><span style="color: #cc66cc;">3</span><span style="color: #66cc66;">,</span><span style="color: #cc66cc;">7</span><span style="color: #66cc66;">,</span><span style="color: #cc66cc;">9</span><span style="color: #66cc66;">&#41;</span></pre></div></div>

<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.ducdigital.com%2F2009%2F12%2F11%2Fquery-a-set-of-ids-from-sql-using-linq-to-sql%2F&amp;linkname=Query%20a%20set%20of%20IDs%20from%20SQL%20using%20LINQ%20to%20SQL"><img src="http://www.ducdigital.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.ducdigital.com/2009/12/11/query-a-set-of-ids-from-sql-using-linq-to-sql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Convert latin accent to non-latin accent (Normalization Form)</title>
		<link>http://www.ducdigital.com/2009/11/30/convert-latin-accent-to-non-latin-accent/</link>
		<comments>http://www.ducdigital.com/2009/11/30/convert-latin-accent-to-non-latin-accent/#comments</comments>
		<pubDate>Mon, 30 Nov 2009 08:20:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Asp.net MVC]]></category>
		<category><![CDATA[Programing]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[csharp]]></category>

		<guid isPermaLink="false">http://www.ducdigital.com/?p=134</guid>
		<description><![CDATA[I'm sure some of you have been tried to remove the special accent sign like "ắ ế í u ư đ" and replace it to a new string without accent for tagging, sluging, permalink purpose in your webpage... this function use for asp.net / C# to replace everything to Normalization Form... Tiếng việt: Chắc hẳn [...]]]></description>
			<content:encoded><![CDATA[<p>I'm sure some of you have been tried to remove the special accent sign like "ắ ế í u ư đ" and replace it to a new string without accent for tagging, sluging, permalink purpose in your webpage...</p>
<p>this function use for asp.net / C# to replace everything to Normalization Form...</p>
<p>Tiếng việt:</p>
<p>Chắc hẳn một số bạn muốn thay các chữ có dấu tiếng vịêt thành chữ không dấu để lưu vào cơ sở dữ liệu, làm permalink hoặc một số chức năng khác, đây là function để thay thế toàn bộ chữ có dấu thành không dấu trong tiếng việt.</p>
<p>Chúc các bạn may mắn /  Good luck</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
</pre></td><td class="code"><pre class="csharp" style="font-family:monospace;">        <span style="color: #0600FF;">public</span> <span style="color: #0600FF;">static</span> <span style="color: #FF0000;">string</span> LatinToAscii<span style="color: #000000;">&#40;</span><span style="color: #FF0000;">string</span> InString<span style="color: #000000;">&#41;</span>
        <span style="color: #000000;">&#123;</span>
            <span style="color: #FF0000;">string</span> newString <span style="color: #008000;">=</span> <span style="color: #FF0000;">string</span>.<span style="color: #0000FF;">Empty</span>, charString<span style="color: #008000;">;</span>
            <span style="color: #FF0000;">char</span> ch<span style="color: #008000;">;</span>
            <span style="color: #FF0000;">int</span> charsCopied<span style="color: #008000;">;</span>
&nbsp;
            <span style="color: #0600FF;">for</span> <span style="color: #000000;">&#40;</span><span style="color: #FF0000;">int</span> i <span style="color: #008000;">=</span> <span style="color: #FF0000;">0</span><span style="color: #008000;">;</span> i <span style="color: #008000;">&lt;</span> InString.<span style="color: #0000FF;">Length</span><span style="color: #008000;">;</span> i<span style="color: #008000;">++</span><span style="color: #000000;">&#41;</span>
            <span style="color: #000000;">&#123;</span>
                charString <span style="color: #008000;">=</span> InString.<span style="color: #0000FF;">Substring</span><span style="color: #000000;">&#40;</span>i, <span style="color: #FF0000;">1</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
                charString <span style="color: #008000;">=</span> charString.<span style="color: #0000FF;">Normalize</span><span style="color: #000000;">&#40;</span>NormalizationForm.<span style="color: #0000FF;">FormKD</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
                <span style="color: #008080; font-style: italic;">// If the character doesn't decompose, leave it as-is</span>
&nbsp;
                <span style="color: #0600FF;">if</span> <span style="color: #000000;">&#40;</span>charString.<span style="color: #0000FF;">Length</span> <span style="color: #008000;">==</span> <span style="color: #FF0000;">1</span><span style="color: #000000;">&#41;</span>
                    newString <span style="color: #008000;">+=</span> charString<span style="color: #008000;">;</span>
                <span style="color: #0600FF;">else</span>
                <span style="color: #000000;">&#123;</span>
                    charsCopied <span style="color: #008000;">=</span> <span style="color: #FF0000;">0</span><span style="color: #008000;">;</span>
                    <span style="color: #0600FF;">for</span> <span style="color: #000000;">&#40;</span><span style="color: #FF0000;">int</span> j <span style="color: #008000;">=</span> <span style="color: #FF0000;">0</span><span style="color: #008000;">;</span> j <span style="color: #008000;">&lt;</span> charString.<span style="color: #0000FF;">Length</span><span style="color: #008000;">;</span> j<span style="color: #008000;">++</span><span style="color: #000000;">&#41;</span>
                    <span style="color: #000000;">&#123;</span>
                        ch <span style="color: #008000;">=</span> charString<span style="color: #000000;">&#91;</span>j<span style="color: #000000;">&#93;</span><span style="color: #008000;">;</span>
                        <span style="color: #008080; font-style: italic;">// If the char is 7-bit ASCII, add</span>
&nbsp;
                        <span style="color: #0600FF;">if</span> <span style="color: #000000;">&#40;</span>ch <span style="color: #008000;">&lt;</span> <span style="color: #FF0000;">128</span><span style="color: #000000;">&#41;</span>
                        <span style="color: #000000;">&#123;</span>
                            newString <span style="color: #008000;">+=</span> ch<span style="color: #008000;">;</span>
                            charsCopied<span style="color: #008000;">++;</span>
                        <span style="color: #000000;">&#125;</span>
                    <span style="color: #000000;">&#125;</span>
                    <span style="color: #008080; font-style: italic;">/* If we've decomposed non-ASCII, give it back
                     * in its entirety, since we only mean to decompose
                     * Latin chars.
                    */</span>
                    <span style="color: #0600FF;">if</span> <span style="color: #000000;">&#40;</span>charsCopied <span style="color: #008000;">==</span> <span style="color: #FF0000;">0</span><span style="color: #000000;">&#41;</span>
                        newString <span style="color: #008000;">+=</span> InString.<span style="color: #0000FF;">Substring</span><span style="color: #000000;">&#40;</span>i, <span style="color: #FF0000;">1</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
                <span style="color: #000000;">&#125;</span>
            <span style="color: #000000;">&#125;</span>
            <span style="color: #0600FF;">return</span> newString.<span style="color: #0000FF;">Replace</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">'đ'</span>, <span style="color: #666666;">'d'</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
        <span style="color: #000000;">&#125;</span></pre></td></tr></table></div>

<p>Modify from source: <a href="http://www.codeproject.com/KB/cs/UnicodeNormalization.aspx">http://www.codeproject.com/KB/cs/UnicodeNormalization.aspx</a></pre>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.ducdigital.com%2F2009%2F11%2F30%2Fconvert-latin-accent-to-non-latin-accent%2F&amp;linkname=Convert%20latin%20accent%20to%20non-latin%20accent%20%28Normalization%20Form%29"><img src="http://www.ducdigital.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.ducdigital.com/2009/11/30/convert-latin-accent-to-non-latin-accent/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding CDN Functionality to ASP.net MVC</title>
		<link>http://www.ducdigital.com/2009/11/24/adding-cdn-functionality-to-asp-net-mvc/</link>
		<comments>http://www.ducdigital.com/2009/11/24/adding-cdn-functionality-to-asp-net-mvc/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 11:52:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Asp.net MVC]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[CDN]]></category>
		<category><![CDATA[content delivery network]]></category>
		<category><![CDATA[extension]]></category>
		<category><![CDATA[htmlHelper]]></category>

		<guid isPermaLink="false">http://www.ducdigital.com/?p=125</guid>
		<description><![CDATA[I bet everyone develop webpage today are most likely to use a CDN for deliver images, video. Unlike in rails, MVC does not have a way to link with CDN, so i write this extension for your HtmlHelper so that you can easily link to a CDN that preconfig in your Web.config First, we need [...]]]></description>
			<content:encoded><![CDATA[<p>I bet everyone develop webpage today are most likely to use a CDN for deliver images, video. Unlike in rails, MVC does not have a way to link with CDN, so i write this extension for your HtmlHelper so that you can easily link to a CDN that preconfig in your Web.config</p>
<p>First, we need to add the ff. to web.config</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;appsettings<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
      <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;add</span> <span style="color: #000066;">key</span>=<span style="color: #ff0000;">&quot;cdn&quot;</span> <span style="color: #000066;">value</span>=<span style="color: #ff0000;">&quot;cdn.ducdigital.com, cn.ducdigital.com&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/appsettings<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

<p>and then use the ff class:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
</pre></td><td class="code"><pre class="csharp" style="font-family:monospace;"><span style="color: #0600FF;">public</span> <span style="color: #0600FF;">static</span> <span style="color: #FF0000;">class</span> CDNHelperExtension
<span style="color: #000000;">&#123;</span>
&nbsp;
    <span style="color: #0600FF;">public</span> <span style="color: #0600FF;">static</span> <span style="color: #FF0000;">string</span> CDNLink<span style="color: #000000;">&#40;</span><span style="color: #0600FF;">this</span> HtmlHelper html, <span style="color: #FF0000;">string</span> path<span style="color: #000000;">&#41;</span>
    <span style="color: #000000;">&#123;</span>
        <span style="color: #FF0000;">string</span><span style="color: #000000;">&#91;</span><span style="color: #000000;">&#93;</span> CDN <span style="color: #008000;">=</span> ConfigurationSettings.<span style="color: #0000FF;">AppSettings</span><span style="color: #000000;">&#91;</span><span style="color: #666666;">&quot;cdn&quot;</span><span style="color: #000000;">&#93;</span>.<span style="color: #0000FF;">Replace</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot; &quot;</span>, <span style="color: #666666;">&quot;&quot;</span><span style="color: #000000;">&#41;</span>.<span style="color: #0000FF;">Split</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">','</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
        Random r <span style="color: #008000;">=</span> <span style="color: #008000;">new</span> Random<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
        <span style="color: #0600FF;">return</span> CDNLink<span style="color: #000000;">&#40;</span>html, path, r.<span style="color: #0000FF;">Next</span><span style="color: #000000;">&#40;</span><span style="color: #FF0000;">0</span>, CDN.<span style="color: #0000FF;">Count</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
    <span style="color: #000000;">&#125;</span>
&nbsp;
    <span style="color: #0600FF;">public</span> <span style="color: #0600FF;">static</span> <span style="color: #FF0000;">string</span> CDNLink<span style="color: #000000;">&#40;</span><span style="color: #0600FF;">this</span> HtmlHelper html, <span style="color: #FF0000;">string</span> path, <span style="color: #FF0000;">int</span> ServerNumber<span style="color: #000000;">&#41;</span>
    <span style="color: #000000;">&#123;</span>
        <span style="color: #FF0000;">string</span><span style="color: #000000;">&#91;</span><span style="color: #000000;">&#93;</span> CDN <span style="color: #008000;">=</span> ConfigurationSettings.<span style="color: #0000FF;">AppSettings</span><span style="color: #000000;">&#91;</span><span style="color: #666666;">&quot;cdn&quot;</span><span style="color: #000000;">&#93;</span>.<span style="color: #0000FF;">Replace</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot; &quot;</span>, <span style="color: #666666;">&quot;&quot;</span><span style="color: #000000;">&#41;</span>.<span style="color: #0000FF;">Split</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">','</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
        <span style="color: #0600FF;">if</span> <span style="color: #000000;">&#40;</span>ServerNumber <span style="color: #008000;">&gt;=</span> CDN.<span style="color: #0000FF;">Count</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span>
            ServerNumber <span style="color: #008000;">=</span> <span style="color: #FF0000;">0</span><span style="color: #008000;">;</span>
        <span style="color: #0600FF;">return</span> <span style="color: #666666;">&quot;http://&quot;</span> <span style="color: #008000;">+</span> CDN<span style="color: #000000;">&#91;</span>ServerNumber<span style="color: #000000;">&#93;</span> <span style="color: #008000;">+</span> path<span style="color: #008000;">;</span>
    <span style="color: #000000;">&#125;</span>
<span style="color: #000000;">&#125;</span></pre></td></tr></table></div>

<p>in your View, just call:</p>

<div class="wp_syntax"><div class="code"><pre class="csharp" style="font-family:monospace;"><span style="color: #008000;">&lt;</span> <span style="color: #008000;">%=</span> Html.<span style="color: #0000FF;">CDNLink</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;/images/&quot;</span><span style="color: #000000;">&#41;</span> <span style="color: #008000;">%&gt;</span></pre></div></div>

<p>Good luck!</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.ducdigital.com%2F2009%2F11%2F24%2Fadding-cdn-functionality-to-asp-net-mvc%2F&amp;linkname=Adding%20CDN%20Functionality%20to%20ASP.net%20MVC"><img src="http://www.ducdigital.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.ducdigital.com/2009/11/24/adding-cdn-functionality-to-asp-net-mvc/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
