Hi Friends,
I am a new bee to .Net. And I am trying to learn Asp.Net MVC3. And In that I have created database in SQL Server. I added a dataset in DAL Folder, And I wrote the [HttpPost] type of method to write into database through the dataset. But I am getting trouble with the data retrieval from dataset and pass that to view from controller. If anybody knew that and having tutorials regarding ADO.Net and MVC3 Please Post that.
Thank You Friends.
Loading
Jignesh TrivediPosted Jan 7, 2013, 6:28 AM
Generally With MVC, people prefer to use Entity Framework because it is ORM and MVC mostly support ORM.
but Please refer below link example
http://www.c-sharpcorner.com/UploadFile/krishnasarala/select-insert-update-and-delete-with-Asp-Net-mvc/
it has select,add, edit and delete functionality with MVC and ado.net
hope this will help you.