What's the most simple way to retrieve all data from a table and save it back in .NET 3.5?

Posted by zoman on Stack Overflow See other posts from Stack Overflow or by zoman
Published on 2010-03-16T15:36:58Z Indexed on 2010/03/16 16:11 UTC
Read the original article Hit count: 160

Filed under:
|
|

I have a number of tables containing some basic (business related) mapping data. What's the most simple way to load the data from those tables, then save the modified values back. (all data should be replaced in the tables)

An ORM is out of question as I would like to avoid creating domain objects for each table.

The actual editing of the data is not an issue. (it is exported into Excel where the data is edited, then the file is uploaded with the modified data)

The technology is .NET 3.5 (ASP.NET MVC) and SQL Server 2005.

Thanks.

© Stack Overflow or respective owner

Related posts about .net-3.5

Related posts about ASP.NET