Save objects to a database?

Posted by Eric on Stack Overflow See other posts from Stack Overflow or by Eric
Published on 2010-05-13T18:56:11Z Indexed on 2010/05/13 19:04 UTC
Read the original article Hit count: 158

So far in my .Net coding adventures I've only had a need to save information to files. So I've used XmlSerializer and DataContractSerializer to serialize attributed classes to XML files. My next project, however, requires that I save and retrieve information from a SQL server database. I'm wondering what my options are for doing this.

The current version of the app, which was not created by me, uses a lot of hard coded SQL commands. But now I'm trying to avoid doing anything where I have to read or write individual fields to or from the database or objects. I especially want to avoid a lot of hard coded SQL in my code. I like how the serializer classes just figure out how to read and write XML files based on the attributes and or public properties of the class. Is there something similar for a database rather then XML?

© Stack Overflow or respective owner

Related posts about c#

Related posts about .NET