Getting started with LINQ in C#

What is LINQ? LINQ stands for Language Integrated Query. LINQ defines keywords that you can use to select, filter, sort, group, and transform data. The minor miracle of LINQ is that different LINQ providers allow these keywords to work with different types of data. LINQ to Objects, LINQ to DataSet, LINQ to XML, LINQ to … Read more

SharePoint 2010 Search

Crawler:  Crawling is the process of gathering data from content sources and storing it in databases for use by the query server. Indexer: Indexing is the process of turning data gathered by the crawler into logical structured data that is usable by a search engine. This process is the second key component to any search engine. The … Read more

Caching in ASP.NET

Cache means to store it in a temp memory for future use. Caching is often used to store information that’s frequently served to users in a faster manner.In this blog, I will write about Caching in ASP.net. What is caching in ASP.Net?  Retrieving same information again and again from the actual sources does not make … Read more