ASP.NET MVC + Oracle Samples and How-tos

Reading NerdDinner and looking for other examples on the web regarding ASP.NET MVC with LINQ To SQL.

In my ASP.NET MVC project, I need to connect to an Oracle database. The main purpose of the app is to display, edit and update data. I'm not sure if ASP.NET MVC can work with Oracle database.

  • Has anyone ever done an ASP.NET MVC project with Oracle as a database?
  • Are there any articles with sample code that you would recommend?
  • What are some simple ORM or data access strategies that you would recommend an ASP.NET project (Web Forms or MVC) to use to communicate with an Oracle database?
+2


source to share


2 answers


You can use Nhibernate to access your database.



+2


source


ASP.NET MVC can certainly support Oracle or any other data source behind the scenes.

MVC is not tied to Linq to SQL in any way. This is just one convenient way (among many) to get data from a data source into your models.



As Sly said, NHibernate is one ORM framework that will work for you.

+1


source







All Articles