Skip to content

Here you can find examples on the use of the ADO.NET Concepts, Connections, Commands, Transactions, Entity Freamework DataBase_First, Model First, Code_First

Notifications You must be signed in to change notification settings

tigranv/ADO.NET_Entity_Framework_6

Repository files navigation

ADO.NET and Entity Framework 6

ADO.NET Overview

ADO.NET provides consistent access to data sources such as SQL Server and XML, and to data sources exposed through OLE DB and ODBC. Data-sharing consumer applications can use ADO.NET to connect to these data sources and retrieve, handle, and update the data that they contain. ADO.NET separates data access from data manipulation into discrete components that can be used separately or in tandem. ADO.NET includes .NET Framework data providers for connecting to a database, executing commands, and retrieving results. Those results are either processed directly, placed in an ADO.NET DataSet object in order to be exposed to the user in an ad hoc manner, combined with data from multiple sources, or passed between tiers. The DataSet object can also be used independently of a .NET Framework data provider to manage data local to the application or sourced from XML. The ADO.NET classes are found in System.Data.dll, and are integrated with the XML classes found in System.Xml.dll. For sample code that connects to a database, retrieves data from it, and then displays that data in a console window, see ADO.NET Code Examples.

Entity Framework Overview

The Entity Framework is a set of technologies in ADO.NET that support the development of data-oriented software applications. Architects and developers of data-oriented applications have struggled with the need to achieve two very different objectives. They must model the entities, relationships, and logic of the business problems they are solving, and they must also work with the data engines used to store and retrieve the data. The data may span multiple storage systems, each with its own protocols; even applications that work with a single storage system must balance the requirements of the storage system against the requirements of writing efficient and maintainable application code. image07


Simple Projects in EF and ADO.NET

Parking Manipulyator in ADO.NET

Parking Manipulyator in Entity Framework 6.0

parkingcrud

BookStore(data binding)

Bookstor

CRM_Project_Core crm_first_shift_functionality


Projects written on C# 6.0, .NET Framework 4.6 Visual Studio 2015 Comunity Edition

About

Here you can find examples on the use of the ADO.NET Concepts, Connections, Commands, Transactions, Entity Freamework DataBase_First, Model First, Code_First

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published