December 2007 - Posts
Today I created my first test ASP.NET application in IIS 7 in Windows 2008. It is amazing, now in IIS manager you can configure the ASP.NET with nice panel, I will explore more on this. A very happy 2008 ahead. Namoskar!!!
Read More...
http://csna01.libredigital.com/ Namoskar!!!
Read More...
Download available for Hand On Labs for Ø LINQ Ø LINQ to SQL http://www.microsoft.com/downloads/details.aspx?FamilyID=e7fa5e3a-f8b2-4f77-bbcd-b5b978402dd1&DisplayLang=en Namoskar!!!
Read More...
One of the biggest limitation in “var” is that it cannot be shared across the methods. So if you are doing something using that keyword then you have to stick to the local. I was reading Alex’s Blog where he explained it very nicely, Here is my implementation,
Read More...
Here I am going to compare the two technologies and point some missing areas. Let us use the Northwind database and get the list of Customers from city London . The ADO.NET approach would be, static void Main ( string [] args) { string sConn = @"ConnectionString"
Read More...
In L2S query execution can be separated in two major areas. One is to fetching the data another is manipulating the data (update, delete and insert). I use one slide during my L2S demo and here it is, Fetching data from database LINQ is only from fetching
Read More...
DataContext’s Translate method converts existing IDataReader to an IEnumerable<T>. This is very useful when you may need to run raw SQL Query though System.Data.Linq. I am getting few similarities with DataContext’s ExecuteQuery. How Translate works
Read More...
What is that? Know more on http://quickstarts.asp.net/3-5-extensions/ Other related resources, ASP.NET 3.5 Extensions Preview Download ASP.NET 3.5 Extensions Preview Forums Namoskar!!!
Read More...
People complain about the keyword “var”. Especially, when we use it with the strict programming language like C# in .NET. Developers also complain about the readability part of it. I totally agree with them, but the scenarios where there will be no options
Read More...
LINQ allows us to join different collection source provided we are mapping with two properties with the same type. It is easy, it is quick and it is concise. //Create Employee Class class Employee { public int ID { get ; set ; } public string Name { get
Read More...
With this exciting release of .NET Framework 3.5 I have been exploring its magic and sharing the finding with you. Here I am compiling all of them together for indexing, C# 3.0: Vote for the keyword “var” C# 3.0 Features: Automatic Property C# 3.0 Features:
Read More...
C# 2.0 and Partial class, in one of the amazing features to work with one class separated in multiple physical files. Not only that, it also helps us to extend designer generated code such as Typed DataSet, Designer generated code etc. With this C# 3.0,
Read More...
Another Windows Presentation Foundation implementation for the popular Architecture Journal is now available for download. So know about Ray Ozzie the Chief Software Architect of Microsoft – the most prestigious position in Microsoft which was captured
Read More...
Learn and for installation-free mode and get started with Visual Studio 2008. MSDN Virtual Lab: Building Web Applications with Visual Studio 2008 MSDN Virtual Lab: What's new in C# 3.0 MSDN Virtual Lab: What's new in Visual Basic 9 Namoskar!!!
Read More...
Beta 3 of the ADO.NET Entity Framework, and a preview of ASP.NET 3.5 Extensions. Designed to make it even easier for developers to build data-centric applications and services regardless of the underlying data source, the ADO.NET Entity Framework is already
Read More...
Hands on labs are available online and this is the best HOL till date for LINQ and C# 3.0. LINQ Hands On Labs LINQ to SQL Hands on Lab C# 3.0 Language Enhancements Hands On Lab Namoskar!!!
Read More...