What is an ADO.Net?
1. What is an ADO.Net? http://blogs.msdn.com/b/microsoft_press/archive/2010/10/28/free-ebook-programming-windows-phone-7-by-charles-petzold.aspx 1. What is an ADO.Net? ADO.Net is commonly termed as ActiveX Data Objects which is a part of .Net Framework. ADO.Net framework has set of classes which are used to handle data access by connecting with different databases like SQL, Access, Oracle, etc… 2. What are two important objects of ADO.Net? There are two important objects of ADO.Net: DataReader and . DataSet. 3. What are the namespaces used in ADO.Net to connect to a database? Following namespaces are used to connect to Database. The System.Data namespace. The System.Data.OleDb namespace – A data provider used to access database such as Access, Oracle, or SQL. The System.Data.SQLClient namespace – Used to access SQL as the data provider. 4. What is LINQ? LINQ is na...