<?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 &#187; .Net</title>
	<atom:link href="http://www.sachinjain.me/category/asp-net/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>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>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>WCF Architecture</title>
		<link>http://www.sachinjain.me/2009/10/wcf-architecture/</link>
		<comments>http://www.sachinjain.me/2009/10/wcf-architecture/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 05:03:24 +0000</pubDate>
		<dc:creator>Sachin Jain</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[WCF]]></category>
		<category><![CDATA[.Net WCF]]></category>
		<category><![CDATA[Architecture]]></category>

		<guid isPermaLink="false">http://www.sachinjain.me/?p=102</guid>
		<description><![CDATA[Following is the diagram for WCF architecture

1. Contracts &#8211; It contains information about what service does and type  of information it will make available.
 a) Data &#8211; A data contract includes the data that will be exchanged by the service. The service and the client do not need to agree on the types, but they [...]]]></description>
		<wfw:commentRss>http://www.sachinjain.me/2009/10/wcf-architecture/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>whats new in asp.net 4.0</title>
		<link>http://www.sachinjain.me/2009/10/whats-new-in-asp-net-4-0/</link>
		<comments>http://www.sachinjain.me/2009/10/whats-new-in-asp-net-4-0/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 06:45:11 +0000</pubDate>
		<dc:creator>Sachin Jain</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[asp.net 4.0]]></category>

		<guid isPermaLink="false">http://www.sachinjain.me/?p=72</guid>
		<description><![CDATA[1) Permanent redirect - for HTTP 301 Moved Permanently  you can now use  RedirectPermanent("yourpage.aspx");

2) Meta Properties- Now you can use page.MetaKeywords and page.metaDescription for setting up meta tags.]]></description>
		<wfw:commentRss>http://www.sachinjain.me/2009/10/whats-new-in-asp-net-4-0/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Creating web services in SQL server</title>
		<link>http://www.sachinjain.me/2009/10/creating-web-services-in-sql-server/</link>
		<comments>http://www.sachinjain.me/2009/10/creating-web-services-in-sql-server/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 15:11:25 +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[Web Services]]></category>

		<guid isPermaLink="false">http://www.sachinjain.me/?p=44</guid>
		<description><![CDATA[For creating web service in SQL server you need to understand http end points. So what is http end points ? It provide an interface using TCP or http for SOAP.
]]></description>
		<wfw:commentRss>http://www.sachinjain.me/2009/10/creating-web-services-in-sql-server/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>What is WCF</title>
		<link>http://www.sachinjain.me/2009/10/what-is-wcf/</link>
		<comments>http://www.sachinjain.me/2009/10/what-is-wcf/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 12:43:10 +0000</pubDate>
		<dc:creator>Sachin Jain</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[WCF]]></category>
		<category><![CDATA[Web Services]]></category>

		<guid isPermaLink="false">http://www.sachinjain.me/?p=31</guid>
		<description><![CDATA[WCF is based on SOA architecture. Its main objective is to achieve features of SOA and coming as close as possible to it. It is basically a framework for creating and distributing the connected applications. WCF provides the set if classes which provides developer a facility to create a SOA applications.
]]></description>
		<wfw:commentRss>http://www.sachinjain.me/2009/10/what-is-wcf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
