MBox-Tutorials
Wednesday, 28 June 2017
LINQ Query Syntax
›
LINQ query syntax: from <range variable> in <IEnumerable<T> or IQueryable<T> Collection> <Standard Query Op...
1 comment:
Advantages of LINQ
›
Advantages of LINQ? Familiar language: Developers don’t have to learn a new query language for each type of data source or data format...
what is LINQ?
›
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...
Monday, 17 April 2017
Linq sample Queries
›
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...
C# Linq Interview Questions
›
What is LINQ? Language-Integrated Query (LINQ) is a set of features in Visual Studio 2008 that extends powerful query capabilities to the...
Monday, 16 January 2017
Coding Standards and Guidelines: Naming Conversions and Style in C#
›
C# Coding Standards and Guidelines: Naming Conversions and Style 1) Use Pascal casing for type and method and constants. public class SomeC...
3 comments:
Wednesday, 11 January 2017
Coding Standards and Guidelines: Comments for C#
›
C# Coding Standards and Guidelines: Comments 1. All source code must include the following comments at the very top: /****************...
Saturday, 7 January 2017
Coding Standards and Guidelines: Error Handling in C#
›
1. Error handler should be present whenever you anticipate possibility of error. 2. Do not use Try-catch for flow- control. 3. Never d...
Thursday, 5 January 2017
Coding Standards and Guidelines ASP.NET
›
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...
›
Home
View web version