LINQ Query Syntax By Mallikarjun A 21:27:00 1 Comment LINQ query syntax: from <range variable> in <IEnumerable<T> or IQueryable<T> Collection> <Standard Query Op... Read More
Advantages of LINQ By Mallikarjun A 21:23:00 Add Comment Advantages of LINQ? Familiar language: Developers don’t have to learn a new query language for each type of data source or data format... Read More
what is LINQ? By Mallikarjun A 21:20:00 Add Comment what is LINQ? LINQ (Language Integrated Query) is uniform query syntax in C# and VB.NET used to save and retrieve data from different s... Read More
Linq sample Queries By Mallikarjun A 21:11:00 Add Comment Q: How can you sort a result set based on 2 columns? Assume that you have 2 tables – Product and Category and you want to sort first by c... Read More
C# Linq Interview Questions By Mallikarjun A 21:05:00 Add Comment What is LINQ? Language-Integrated Query (LINQ) is a set of features in Visual Studio 2008 that extends powerful query capabilities to the... Read More
Coding Standards and Guidelines: Naming Conversions and Style in C# By Mallikarjun A 20:11:00 3 Comments C# Coding Standards and Guidelines: Naming Conversions and Style 1) Use Pascal casing for type and method and constants. public class SomeC... Read More
Coding Standards and Guidelines: Comments for C# By Mallikarjun A 09:25:00 Add Comment C# Coding Standards and Guidelines: Comments 1. All source code must include the following comments at the very top: /****************... Read More
Coding Standards and Guidelines: Error Handling in C# By Mallikarjun A 22:16:00 Add Comment 1. Error handler should be present whenever you anticipate possibility of error. 2. Do not use Try-catch for flow- control. 3. Never d... Read More
Coding Standards and Guidelines ASP.NET By Mallikarjun A 20:22:00 Add Comment Coding Standards and Guidelines ASP.NET 1. Prefix user control names with “uc” 2. The rest of the user control name should be in P... Read More
Coding Standards and Guidelines for Database By Mallikarjun A 20:23:00 Add Comment Coding Standards and Guidelines for Database ANSI SQL 92 standards have to be followed for writing queries. Do not put order by... Read More