VirtIngresEDM Creating an Entity Data Model (EDM) for the Ingres Tutorial database The following steps can be used to create an Entity Data Model (EDM) for the Ingres Tutorial database: Launch the Visual Studio 2008 SP1 IDE.
Create a Web Application project by going to the File menu in Visual Studio and choosing New Project. When the New Project window appears, choose either Visual Basic or Visual C# as the programming language. Within the language category, click on Web and select ASP.NET Web Application from the right-hand panel. Choose a name for the project, for example VirtuosoDataService, and click OK.
This will create a new project called VirtuosoDataService.
Right click on the VirtuosoDataService project name of the Solution Explorer pane. Then, select the Add -> New Item menu option.
The Add New Item dialog will appear. Choose the ADO.NET Entity Data Model template. Give it the name Virtuoso.edmx, and click Add to start the creation of the ADO.Net Entity Data Model.
In the Entity Data Model Wizard dialog Choose Model Contents page, select the Generate from Database model type and click Next.
In the Entity Data Model Wizard dialog Choose your Data Connection page, select the New Connection button.
In the Choose Data Sourcedialog, select the OpenLink Virtuoso Data Source from the list and click Continue.
In the Add Connection dialog, specify the hostname, portno, username, and password for the target Virtuoso Server and and check the Save Password check box.
Select the Select Database From List radio button and choose the TUT database from the drop down list.
Press the Test Connection dialog to verify the database is accessible.
Click OK to add the connection.
Set the entity connect string name to VirtuosoEntities (note this name as it is required in the section on creating and ADO.Net Data Service) and click Next.
In the Choose your Database Objects page, tick the Tables check box to select all tables in the TUT catalog for addition to the Entity Data Model. Set the Model Namespace to VirtuosoModel and click Finish.
The Virtuoso.edmx EDM will be created with the tables and relationships displayed in the Visual Studio IDE.
Creation of the Entity Data Model for the Ingres Tutorial database is now complete.