<?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>Sachin Jain</title>
	<atom:link href="http://www.sachinjain.me/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sachinjain.me</link>
	<description>IT Professional - MCA, MBA</description>
	<lastBuildDate>Thu, 20 May 2010 15:07:51 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Sample LINQ Queries in .net</title>
		<link>http://www.sachinjain.me/2010/05/sample-linq-queries-in-net/</link>
		<comments>http://www.sachinjain.me/2010/05/sample-linq-queries-in-net/#comments</comments>
		<pubDate>Thu, 20 May 2010 15:06:51 +0000</pubDate>
		<dc:creator>Sachin Jain</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[LINQ]]></category>
		<category><![CDATA[LINQ Queries]]></category>

		<guid isPermaLink="false">http://www.sachinjain.me/?p=163</guid>
		<description><![CDATA[






1) Simple Query
var CustQuery= from cust in customers
select cust;
2) Where Clause


var DelhiCustomerQuery = from cust in customers
where cust.City == &#8220;Delhi&#8221;
select cust;
Logical Operator
where cust.City==&#8221;delhi&#8221; &#38;&#38; cust.Name == &#8220;mumbai&#8221;
3) Order by
var DelhiCustomerQuery = from cust in customers where cust.City == &#8220;Delhi&#8221; orderby cust.Name ascending
select cust;
4) Group by
var QueryGroupByCity = from cust in customers group cust by cust.City
Now [...]]]></description>
		<wfw:commentRss>http://www.sachinjain.me/2010/05/sample-linq-queries-in-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3 Key new features in .net 4.0</title>
		<link>http://www.sachinjain.me/2010/05/3-key-new-features-in-net-4-0/</link>
		<comments>http://www.sachinjain.me/2010/05/3-key-new-features-in-net-4-0/#comments</comments>
		<pubDate>Thu, 20 May 2010 10:04:42 +0000</pubDate>
		<dc:creator>Sachin Jain</dc:creator>
				<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://www.sachinjain.me/?p=160</guid>
		<description><![CDATA[Following are the 3 new Key features in .net 4.0
1) Windows work flow and WCF 4.0:- This is a major change in 4.0.
In WCF they have given following features :-


 Dynamic Service and End Point discovery &#8211; The problem was faced in earlier version of WCF that if theend point has been changed at service [...]]]></description>
		<wfw:commentRss>http://www.sachinjain.me/2010/05/3-key-new-features-in-net-4-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Difference between dynamic and var keyword .net 4.0</title>
		<link>http://www.sachinjain.me/2010/05/difference-between-dynamic-and-var-keyword-net-4-0/</link>
		<comments>http://www.sachinjain.me/2010/05/difference-between-dynamic-and-var-keyword-net-4-0/#comments</comments>
		<pubDate>Thu, 20 May 2010 06:04:43 +0000</pubDate>
		<dc:creator>Sachin Jain</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[asp.net 4.0]]></category>
		<category><![CDATA[dynamic 4.0]]></category>
		<category><![CDATA[var asp.net]]></category>

		<guid isPermaLink="false">http://www.sachinjain.me/?p=158</guid>
		<description><![CDATA[In .net 4.0 dynamic keyword has been introduced. This allows you to define the object without specifying its type. So let say we have following string :-

string s = &#8220;sachin&#8221;;

We can define another variable without specifying the type

dynamic d = s;

Now this can also be done through var keyword so whats the difference?
The difference is [...]]]></description>
		<wfw:commentRss>http://www.sachinjain.me/2010/05/difference-between-dynamic-and-var-keyword-net-4-0/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Re-invention of Email &#8211; Google Wave &#8211; Top 10 Features</title>
		<link>http://www.sachinjain.me/2009/11/re-invention-of-email-google-wave-top-10-features/</link>
		<comments>http://www.sachinjain.me/2009/11/re-invention-of-email-google-wave-top-10-features/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 09:15:29 +0000</pubDate>
		<dc:creator>Sachin Jain</dc:creator>
				<category><![CDATA[New Updates]]></category>

		<guid isPermaLink="false">http://www.sachinjain.me/?p=146</guid>
		<description><![CDATA[Google has introduced its new product GOOGLE WAVE! It is an online tool provides communication and collaboration in real time. Google wave has been build on the concept of cloud computing.
It just a next generation emailing or communication tool. It has merged social networking, instant messaging, emails, wiki all together at one platform. You can [...]]]></description>
		<wfw:commentRss>http://www.sachinjain.me/2009/11/re-invention-of-email-google-wave-top-10-features/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Do&#8217;s and Don&#8217;t for Interview</title>
		<link>http://www.sachinjain.me/2009/11/dos-and-dont-for-interview/</link>
		<comments>http://www.sachinjain.me/2009/11/dos-and-dont-for-interview/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 16:26:41 +0000</pubDate>
		<dc:creator>Sachin Jain</dc:creator>
				<category><![CDATA[Individual]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[Organization]]></category>
		<category><![CDATA[interview tips]]></category>

		<guid isPermaLink="false">http://www.sachinjain.me/?p=143</guid>
		<description><![CDATA[Do&#8217;s
1) Early arrival &#8211; There is no excuse for late candidates. Always arrive 15 min early.
2) Giving your qualifications &#8211; Stress your accomplishments that are most related to the job.
3) Conduct yourself professionaly &#8211; Be aware what your body language is saying. For example &#8211; Smile, make eye contact.
4) Anticipate tough questions &#8211; Prepare yourself [...]]]></description>
		<wfw:commentRss>http://www.sachinjain.me/2009/11/dos-and-dont-for-interview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unique constraints for LARGE TEXT columns &#8211; SQL</title>
		<link>http://www.sachinjain.me/2009/11/unique-constraints-for-large-text-columns-sql/</link>
		<comments>http://www.sachinjain.me/2009/11/unique-constraints-for-large-text-columns-sql/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 15:33:32 +0000</pubDate>
		<dc:creator>Sachin Jain</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Server 2005]]></category>
		<category><![CDATA[SQL Server 2008]]></category>
		<category><![CDATA[unique constraint]]></category>

		<guid isPermaLink="false">http://www.sachinjain.me/?p=141</guid>
		<description><![CDATA[Suppose you are storing URL in your table and you want to apply UNIQUE contraint but as SQL allows only 900 byte limit. how can you put unique constraint for larger text ??
For this you can create a computed CHECKSUM column which is an integer vale and put constraint on it.
Example as follows
CREATE TABLE messages [...]]]></description>
		<wfw:commentRss>http://www.sachinjain.me/2009/11/unique-constraints-for-large-text-columns-sql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>preventing select * from the query in SQL</title>
		<link>http://www.sachinjain.me/2009/11/preventing-select-from-the-query-in-sql/</link>
		<comments>http://www.sachinjain.me/2009/11/preventing-select-from-the-query-in-sql/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 14:22:48 +0000</pubDate>
		<dc:creator>Sachin Jain</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Server 2005]]></category>
		<category><![CDATA[SQL Server 2008]]></category>
		<category><![CDATA[preventing select *]]></category>

		<guid isPermaLink="false">http://www.sachinjain.me/?p=139</guid>
		<description><![CDATA[For Team Leads, Developer don&#8217;t listen what you say   still using * in their select queries. You can restrict them using * by using deny select on object. 
This all you can do by create a dummy column in table and deny it for selection. Now user can select the rest of the [...]]]></description>
		<wfw:commentRss>http://www.sachinjain.me/2009/11/preventing-select-from-the-query-in-sql/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Top 7 features of windows 7</title>
		<link>http://www.sachinjain.me/2009/10/top-7-features-of-windows-7/</link>
		<comments>http://www.sachinjain.me/2009/10/top-7-features-of-windows-7/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 07:15:03 +0000</pubDate>
		<dc:creator>Sachin Jain</dc:creator>
				<category><![CDATA[New Updates]]></category>
		<category><![CDATA[Features fo windows 7]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.sachinjain.me/?p=134</guid>
		<description><![CDATA[1) Home Group &#8211; Now you can share pictures, documents , videos , music in network with ease. Home Group is a feature that allows you to join any one in a network by just clicking to &#8220;join now&#8221;. Yes, ofcourse privacy has been maintained, you can set the password while sharing your documents over [...]]]></description>
		<wfw:commentRss>http://www.sachinjain.me/2009/10/top-7-features-of-windows-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom application error tracking through global.asax file</title>
		<link>http://www.sachinjain.me/2009/10/custom-application-error-tracking-through-global-asax-file/</link>
		<comments>http://www.sachinjain.me/2009/10/custom-application-error-tracking-through-global-asax-file/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 14:04:11 +0000</pubDate>
		<dc:creator>Sachin Jain</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Error Tracking]]></category>

		<guid isPermaLink="false">http://www.sachinjain.me/?p=111</guid>
		<description><![CDATA[Custom application error tracking through global.asax file. Here you can track querystrings, post data and whole exception message with url]]></description>
		<wfw:commentRss>http://www.sachinjain.me/2009/10/custom-application-error-tracking-through-global-asax-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Non Verbal Communication &#8211; 93% effective</title>
		<link>http://www.sachinjain.me/2009/10/non-verbal-communication-93-effective/</link>
		<comments>http://www.sachinjain.me/2009/10/non-verbal-communication-93-effective/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 11:28:17 +0000</pubDate>
		<dc:creator>Sachin Jain</dc:creator>
				<category><![CDATA[Individual]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[Communication]]></category>
		<category><![CDATA[Non Verbal]]></category>

		<guid isPermaLink="false">http://www.sachinjain.me/?p=107</guid>
		<description><![CDATA[Communication without words plays an very important role in communication. It is surprising that the words you are delivering is not as much effective, it is
the non verbal communication which makes your communication more effective. For example eye contact, Your tone (loud , low , polite).
Lets categorized it :-
1) Kinesics or body language &#8211; It [...]]]></description>
		<wfw:commentRss>http://www.sachinjain.me/2009/10/non-verbal-communication-93-effective/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
