Haneef Puttur

First MVC ODP.net project using entity framework – Part 2/2

Task :

Connect to oracle DB using ODP.net and generate forms using Entity Frame Work without any coding.

Pre Requisites :

Complete Video Tutorial 

 

 

 

Right Click Models –> Add –> Select ADO.net entity data model

Enter name like “EmployeeModel” and press OK

Click New Connection

Please note if you cant find Oracle database ODP.net managed Driver , then please install ODP.net driver from following link before you proceed further.

http://www.oracle.com/technetwork/topics/dotnet/downloads/index.html

 

Now before you proceed further please build solution to make sure all is WELL upto this stage.

If you can see above image means then your configuration for ODP.net is fine .

Now stop the instance using Shift+F5 and go ahead with adding Controllers

Now Add the two controllers (Employee and Departments) using Entity frame work

 

 

Follow the above same procedure and create another model for department.

 

Now open Layout.cshtml from the view/shared folder and add the following two lines, which will create the links in the header for the Employee and Department controllers which we created now.

 <li>@Html.ActionLink("Department", "Index", "Department")</li>
 <li>@Html.ActionLink("Employee", "Index", "Employee")</li>

 

Now Click Run — by pressing F5 to see the application in action.

 

 

 .

Exit mobile version