8.4.6.Using EDM to create Entity Framework based applications

Now that a Microsoft Entity Data Model has been created for the Ingres Tutorial database, Entity Framework applications can be created to make use of it.

Entity Frameworks based ADO.NET Data Service

An ADO.Net Data Service for the Ingres tables can be created using the Entity Data Model created in the Creating EDM in Visual Studio 2008 section .

  1. Open the

    VirtuosoDataService

    project created in the Creating EDM in Visual Studio 2008 section .

  2. Select the Project -> Add New Item menu option.

    Figure8.189.VirtuosoDataService

    VirtuosoDataService

  3. The

    Add New Item

    dialog will appear. Choose the

    ADO.NET Data Service template

    . Give it the name

    Virtuoso.svc

    , and click

    Add

    to create the ADO.Net Data Service.

    Figure8.190.Add New Item

    Add New Item

  4. In the newly created

    Virtuoso.svc.cs

    Data Service, add the data source class name of

    VirtuosoEntities

    (note this is the name set in the Creating EDM in Visual Studio 2008 section) as the

    DataService

    name. Enable the access to the Data Service by adding the entry

    config.SetEntitySetAccessRule("*", EntitySetRights.All);

    in the

    InitializeService

    method.

    // C#
    
    using System;
    using System.Web;
    using System.Collections.Generic;
    using System.ServiceModel.Web;
    using System.Linq;
    using System.Data.Services;
    
    namespace SimpleDataService
    {
        public class Northwind : DataService<VirtuosoDemoEntities>
        {
            public static void InitializeService(IDataServiceConfiguration  config)
            {
                config.SetEntitySetAccessRule("*", EntitySetRights.All);
            }
        }
    }
    
    

    Figure8.191.Virtuoso.svc.cs

    Virtuoso.svc.cs

  5. To test the Data Service, simply hit

    Ctrl+F5

    within Visual Studio. This will start the development web server, run the Data Services server inside, and load a Web browser page displaying the list of available tables/entities for the Ingres Tutorial database catalog.

    Figure8.192.Data Service test

    Data Service test

  6. To access a specific entity instance like the cust_orders table order number 5500 record, use this convention: http://host/vdir/Virtuoso.svc/cust_orders(5500) .

    Figure8.193.Orders

    Orders

Notes:

  1. Important

    - To view

    Atom

    (the default format returned by an ADO.NET Data Service) in Internet Explorer, you must first ensure that

    Feed Reading View

    is turned

    off

    . This can be done on the

    Content tab

    of

    Tools in Internet Options

    .

  2. If a Data Services entity instance URI page fails to load you can turn

    Verbose

    errors on by adding

    config.UseVerboseErrors = true;

    in the

    virtuoso.svc.cs InitializeService

    method to obtain more detailed information from the server as to why the page failed to load:

    public static void InitializeService(IDataServiceConfiguration config)
    
    {
    
    config.UseVerboseErrors = true;
    
    config.SetEntitySetAccessRule("*", EntitySetRights.All);
    
    }
    

Visual Studio Windows DataGrid Form Application

This section details the steps required to create a simple Visual Studio 2008 Windows Form application, with associated DataGridView control for displaying data in selected tables from the target database.

  1. Launch the Visual Studio 2008 SP1 IDE.

    Figure8.194.Visual Studio 2008 SP1 IDE

    Visual Studio 2008 SP1 IDE

  2. Create a

    Web Application

    project by going to the

    File

    menu in Visual Studio and choosing

    New Project

    .

    Figure8.195.Web Application

    Web Application

  3. When the New Project window appears, choose either

    Visual Basic

    or

    Visual C#

    as your programming language.

  4. Within the language category, click on

    Windows

    and select

    Windows Form Application

    from the right-hand panel.

  5. Choose a name for the project, for example

    VirtWindowsFormApplication

    , and click

    OK

    .

    Figure8.196.Web Application

    Web Application

  6. In the

    Toolbox

    , expand

    Data Controls

    , and drag the

    DataGridView

    control onto the form.

    Figure8.197.Toolbox

    Toolbox

  7. Click on the little

    arrow

    in the top right of the

    DataGridView

    control. This loads the

    DataGridView Task

    menu.

    Figure8.198.DataGridView Task

    DataGridView Task

  8. Click on the

    Choose Data Source

    list box.

    Figure8.199.Choose Data Source

    Choose Data Source

  9. Click on the

    Add Project Data Source

    link to connect to a data source.

    Figure8.200.Add Project Data Source

    Add Project Data Source

  10. In the

    Data Source Configuration Wizard

    dialog

    Choose Data Source Type

    page select the

    Database

    data source type and click

    Next

    .

    Figure8.201.Data Source Type

    Data Source Type

  11. In the

    Data Source Configuration Wizard

    dialog

    Choose your Data Connection

    page, select the

    New Connection

    button

    Figure8.202.Data Source Configuration Wizard

    Data Source Configuration Wizard

  12. In the

    Choose Data Source

    dialog, select the OpenLink

    Virtuoso Data Source

    from the list and click

    Continue

    .

    Figure8.203.Data Source

    Data Source

  13. In the

    Add Connection

    dialog, specify the

    hostname, portno, username and password

    for the target Virtuoso Server and check the Save Password check box.

    Figure8.204.Connection Properties

    Connection Properties

  14. Select the

    Select Database From List

    radio button and choose the

    TUT

    database from the drop down list.

    Figure8.205.Add connection

    Add connection

  15. Press the

    Test Connection

    dialog to verify that the database is accessible.

    Figure8.206.Test Connection

    Test Connection

  16. Click OK to add the connection.

    Figure8.207.Test Connection

    Test Connection

  17. Leave the name of the connect string to the default of

    TUTConnectionString

    and click

    Next

    Figure8.208.TUTConnectionString

    TUTConnectionString

  18. From the list of available tables returned for the TUT database, select the

    cust_orders

    table to be associated with the

    DataGridView

    control.

    Figure8.209.TUT database

    TUT database

  19. The columns names of the select table will be displayed in the DataGridView.

    Figure8.210.DataGridView

    DataGridView

  20. Resize the Form and DataGridView to allow all columns to be visible, if possible.

    Figure8.211.Resize the Form and DataGridView

    Resize the Form and DataGridView

  21. To test the application, simply hit

    Ctrl+F5

    within Visual Studio or select

    Start Debugging

    from the

    Debug

    menu.

    Figure8.212.Start Debugging

    Start Debugging

  22. The data from the

    cust_orders

    table will be displayed in the

    DataGrid

    .

    Figure8.213.DataGrid

    DataGrid

The task is now complete.