Consider a Visual Studio 2010 project whose task is to model data using the Entity Framework. The data source is a SQL Server 2000 database.
The first step is to create a new Entity Data ADO.NET data item.
The Entity Data Model Wizard requests a data connection.

When creating a new connection, you need to use a provider other than SqlClient . This is usually SQLOLEDB .
The list of data providers has only SqlClient or the ".NET Framework Data Provider for SQL Server".

- Is there a need for Visual Studio 2010 to create or use connections to SQL Server 2000 using the Entity Framework?
source share