Entity Framework and Windows Presentation Foundation Walk Through
Entity Framework
The first thing to do is get the Database Model going:
- Fire up Visual Studio 2012
- Create a new project called EF_WPF_Example, Select Windows, WPF project type.
- If the Data Sources side bar (windows) is not visible Press Shift+Alt+D
- Click Add New Data Sources and in the wizard...
- Click Database, Next
- Entity Data Model, Next
- Generate from database, Next
- Click New Connection...
- Give your server name and click on the drop down under "Select or enter a database name"
- Select the University Database Example that we have been working on.
- Test the connection to make sure that it works, then click OK
- Make a special note of the connection string name, Click next
Under tables place check marks next to "advisor", "instructor", "student" and notice the Model Namespace (Mine was UniversityExampleModel), Click Finish.
Your file should now look like this:
One last thing: Rename the file to be UniversityModel (I just don't like Model1.edmx).
WPF Part
Now we will build the GUI (You could do this in Blend too, but I'm going to use Visual Studio 2012).