Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need some advice on a little project im doing. I have a database which holds sales details, I have created a view which gets all the data that I need. I now need to get the data from the view manipulate the data and display it on the website.

please can you advice me on the best way i can get the data from the database to my asp.net application.

iv set up a datasource on the webpage, but im a bit stuck on how i can manipulate the data from this datasource.

UPDATE

sorry i forgot to mention that im using Interbase so im having to use a ODBC connector to interface between asp.net and the database. i was under the impression that LINQ2SQL is only for SQL server. normally i would just use data reader and put that into a dataset, but due to the interbase issue im having to create a SQL data source. – c11ada 1 min ago edit

share|improve this question

2 Answers

up vote 0 down vote accepted

You have different options:

  • Read data directly with DataReader or Dataset
  • Use Linq2SQL Use
  • Entity Framework (EF)

I would recommend using LINQ or EF because they are simpler and Object Oriented. Between them probably LINQ is simpler to set up and EF is more powerful.

It is easy to find info and examples of all those options.

share|improve this answer
sorry i forgot to mention that im using Interbase so im having to use a ODBC connector to interface between asp.net and the database. i was under the impression that LINQ2SQL is only for SQL server. normally i would just use data reader and put that into a dataset, but due to the interbase issue im having to create a SQL data source. – c11ada Jun 14 '11 at 12:47

That depends on the quantity of manipulation and your skills. Using datareader or dataset is normally have good knowledge then other techniques even though they are standard and good to use. As @gustavogb suggested you can use anyone, but that really depends on your skills and interest to upgrade the knowledge.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.