<?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>Debug And Fix You</title>
	<atom:link href="http://www.pallathu.com/blog/wordpress/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.pallathu.com/blog/wordpress</link>
	<description>Pallathu blog</description>
	<lastBuildDate>Wed, 28 Dec 2011 01:50:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>wcf</title>
		<link>http://www.pallathu.com/blog/wordpress/?p=544</link>
		<comments>http://www.pallathu.com/blog/wordpress/?p=544#comments</comments>
		<pubDate>Wed, 28 Dec 2011 01:50:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.pallathu.com/blog/wordpress/?p=544</guid>
		<description><![CDATA[
What is ABC?
What are the five different contracts?
What is the advantage of XML Serialization over data contracts? Ans. Data Contracts
What are the three types of patterns?
What are the different Application Patterns? Ans. MVC, MVVM
What is the difference between Page Controller and Front Controller?
What takes more power? Cell or Wireless? Ans. Cell because the battery need [...]]]></description>
			<content:encoded><![CDATA[<ol>
<li>What is ABC?</li>
<li>What are the five different contracts?</li>
<li>What is the advantage of XML Serialization over data contracts? Ans. Data Contracts</li>
<li>What are the three types of patterns?</li>
<li>What are the different Application Patterns? Ans. MVC, MVVM</li>
<li>What is the difference between Page Controller and Front Controller?</li>
<li>What takes more power? Cell or Wireless? Ans. Cell because the battery need to be charged. The Wireless is bandwidth per second.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.pallathu.com/blog/wordpress/?feed=rss2&amp;p=544</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Struct Vs Class</title>
		<link>http://www.pallathu.com/blog/wordpress/?p=541</link>
		<comments>http://www.pallathu.com/blog/wordpress/?p=541#comments</comments>
		<pubDate>Sat, 24 Dec 2011 11:49:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.pallathu.com/blog/wordpress/?p=541</guid>
		<description><![CDATA[1. Struct is a value type. Class is a reference.
2. Struct is created on stack. Class is created on the heap.
3. Struct can&#8217;t have parameterless default constructors. Class can have parameterless constructors.
4. Struct can&#8217;t be inherited like class. Struct can inherit from Object.
5. Struct is faster. Class is slow.
]]></description>
			<content:encoded><![CDATA[<p>1. Struct is a value type. Class is a reference.<br />
2. Struct is created on stack. Class is created on the heap.<br />
3. Struct can&#8217;t have parameterless default constructors. Class can have parameterless constructors.<br />
4. Struct can&#8217;t be inherited like class. Struct can inherit from Object.<br />
5. Struct is faster. Class is slow.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pallathu.com/blog/wordpress/?feed=rss2&amp;p=541</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Enterprise Library</title>
		<link>http://www.pallathu.com/blog/wordpress/?p=539</link>
		<comments>http://www.pallathu.com/blog/wordpress/?p=539#comments</comments>
		<pubDate>Thu, 22 Dec 2011 16:41:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.pallathu.com/blog/wordpress/?p=539</guid>
		<description><![CDATA[The Microsoft Enterprise Library has the following code blocks:

Caching
Cryptography
Data Access
Exception Handling
Logging
Policy Injection
Security
Unity
Validation

]]></description>
			<content:encoded><![CDATA[<p>The Microsoft Enterprise Library has the following code blocks:</p>
<ol>
<li>Caching</li>
<li>Cryptography</li>
<li>Data Access</li>
<li>Exception Handling</li>
<li>Logging</li>
<li>Policy Injection</li>
<li>Security</li>
<li>Unity</li>
<li>Validation</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.pallathu.com/blog/wordpress/?feed=rss2&amp;p=539</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Group by</title>
		<link>http://www.pallathu.com/blog/wordpress/?p=525</link>
		<comments>http://www.pallathu.com/blog/wordpress/?p=525#comments</comments>
		<pubDate>Mon, 19 Dec 2011 16:43:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.pallathu.com/blog/wordpress/?p=525</guid>
		<description><![CDATA[select name, sum(salary) from employee
The employee table may have 100 employees. Running the above statement return a single row for the sum(salary) and 100 rows for name. The sql can&#8217;t return this data set, so a &#8216;group by&#8217; statement will help like this: select name, sum(salary) from employee group by name.
]]></description>
			<content:encoded><![CDATA[<p>select name, sum(salary) from employee</p>
<p>The employee table may have 100 employees. Running the above statement return a single row for the sum(salary) and 100 rows for name. The sql can&#8217;t return this data set, so a &#8216;group by&#8217; statement will help like this: select name, sum(salary) from employee group by name.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pallathu.com/blog/wordpress/?feed=rss2&amp;p=525</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IEnumerable Vs IQueryable</title>
		<link>http://www.pallathu.com/blog/wordpress/?p=523</link>
		<comments>http://www.pallathu.com/blog/wordpress/?p=523#comments</comments>
		<pubDate>Mon, 19 Dec 2011 16:37:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.pallathu.com/blog/wordpress/?p=523</guid>
		<description><![CDATA[IEnumerable and IQueryable both work with data sources to return data. The IQueryable makes a tree expression and return efficient data while IEnumerable return ineffienct data. IEnumerable has to work in the inefficient data to return the efficient data again.
]]></description>
			<content:encoded><![CDATA[<p>IEnumerable and IQueryable both work with data sources to return data. The IQueryable makes a tree expression and return efficient data while IEnumerable return ineffienct data. IEnumerable has to work in the inefficient data to return the efficient data again.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pallathu.com/blog/wordpress/?feed=rss2&amp;p=523</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

