- I have an existing asp.net website that uses an SqlConnection.
- I have added the ADO.net Entity Framework.
- I have successfully connected to the database and created the .edmx file.
- I am able to connect through the Entity Framework with the connectionstring that is automatically generated.
I want to use the existing SqlConnection object that I use throughout the site for the Entity Framework connection.
I do not want to have to use a second database connection for the one page that is going to use the ADO.net Entity Framework and I don’t want to change the entire site to use the new Entity Framework connection string.
Thanks for any help you can provide.