Could not find EntityDataSource in my toolbox in VS 2012

I am trying to follow the example of creating Winform to access the database, here is the link of this guide http://www.codeproject.com/Articles/221931/Entity-Framework-in-WinForms?msg=4528028#xx4528028xx

But in this tutorial, after adding a datagridview on the form, I cannot find EntityDataSource. What is the problem? I'm completely fresh in EntityFramework, so I'm not sure if I did something wrong following the tutorial?

http://i.stack.imgur.com/QMpVU.jpg

Another little help, can anyone recommend an example of creating winform to read data from a database using entities?

+4
source share
1 answer

In the ToolBox, right-click and select "Select Elements" ... Then find the EntityDataSource control and check it!

However, note that this control seems to be deprecated for EF5 ...

+1
source

Source: https://habr.com/ru/post/1492338/


All Articles