tags:

views:

160

answers:

1

Hi

I am new to .NET, want to follow N-tier approach using Visual Studio 2010(ASP.NET MVC + C#),IIS and Oracle 11g(installed on the remote linux machine). I need to have Presentation, Business Logic, Data Access and Data Tiers. Can anyone give me site/example application with the following fuctionality: insert, retrieve, delete and update/modify data in the database. A step by step guide will be highly appreciated.

Thank you in advance

A: 

Take a look as ASP.net MVC:

http://www.asp.net/mVC/

Lots of good video tutorials:

http://www.asp.net/Learn/data-access/

Shane Cusson
Thank you ShaneI tried http://www.asp.net/Learn/data-access/ and it gives gentle theory and practicals. But the database used is MSSQL not Oracle. Is the concerpt the same - both in Oracle and MSSQL Server?
ephraim
There are differences in syntax between Oracle and SQL server. You could use the Entity Framework as an ORM. You'd write your queries as LINQ.Entity Framework http://msdn.microsoft.com/en-us/data/aa937723.aspxOracle's .net Site: http://www.oracle.com/technology/tech/dotnet/index.html
Shane Cusson