Differences between revisions 6 and 7
Revision 6 as of 2013-02-15 18:40:12
Size: 3075
Editor: embsys-tekscope-2
Comment:
Revision 7 as of 2013-02-15 18:42:04
Size: 3076
Editor: embsys-tekscope-2
Comment:
Deletions are marked like this. Additions are marked like this.
Line 43: Line 43:
{{{!csharp {{{#!csharp

Entity Framework and Windows Presentation Foundation Walk Through

Entity Framework

The first thing to do is get the Database Model going:

  1. Fire up Visual Studio 2012
  2. Create a new project called EF_WPF_Example, Select Windows, WPF project type.
  3. If the Data Sources side bar (windows) is not visible Press Shift+Alt+D
  4. Click Add New Data Sources and in the wizard...
    1. Click Database, Next
    2. Entity Data Model, Next
    3. Generate from database, Next
    4. Click New Connection...
    5. Give your server name and click on the drop down under "Select or enter a database name"
    6. Select the University Database Example that we have been working on.
    7. Test the connection to make sure that it works, then click OK
    8. Make a special note of the connection string name, Click next
    9. 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:

EFModel.png

One last thing: Rename the file to be UniversityModel (I just don't like Model1.edmx).


WPF Part (1)

Now we will build the GUI (You could do this in Blend too, but I'm going to use Visual Studio 2012).

  1. Make sure the toolbox is visible.
  2. Add two Label and two TextBox objects on the screen, one DataGrid and three buttons so that it looks like the following (Don't worry about the Binding yet though!):

XAML_View.png

Creating the View Model

There are two parts to the view model. First you need to create an object that implements ICommand. I'm using a rather standard way of doing these called a DelegateCommand

   1 using System;
   2 using System.Collections.Generic;
   3 using System.Linq;
   4 using System.Text;
   5 using System.Threading.Tasks;
   6 using System.Windows.Input;
   7 
   8 namespace EF_WPF_Example
   9 {
  10     class DelegateCommand : ICommand
  11     {
  12         private readonly Predicate<object> _canExecute;
  13         private readonly Action<object> _execute;
  14         private bool flagExecutable = false;
  15 
  16         public event EventHandler CanExecuteChanged;
  17 
  18         public DelegateCommand(Action<object> execute, Predicate<object> canExecute)
  19         {
  20             _execute = execute;
  21             _canExecute = canExecute;
  22         }
  23 
  24         public bool CanExecute(object parameter)
  25         {
  26             bool flag = _canExecute == null || _canExecute(parameter);
  27             if (flagExecutable != flag)
  28             {
  29                 flagExecutable = !flagExecutable;
  30                 RaiseCanExecuteChanged();
  31             }
  32             return flag;
  33         }
  34 
  35         public void Execute(object parameter)
  36         {
  37             _execute(parameter);
  38         }
  39 
  40         public void RaiseCanExecuteChanged()
  41         {
  42             if (CanExecuteChanged != null)
  43             {
  44                 CanExecuteChanged(this, EventArgs.Empty);
  45             }
  46         }
  47     }
  48 }

DatabaseManagementSystems/EntityFrameworkWpfExample (last edited 2013-02-15 18:58:39 by embsys-tekscope-2)