Where does the ObjectDataSource cache data?

Posted by Jeremy on Stack Overflow See other posts from Stack Overflow or by Jeremy
Published on 2010-03-16T15:57:47Z Indexed on 2010/03/16 16:01 UTC
Read the original article Hit count: 433

I'm considering using an ObjectDataSource as an intermediate between my page controls and my data access layer & object model. Traditionally I have manually created the object and populate it via a series of findcontrol statements when I need to insert/update data in the database. I'm hoping that I can use the ObjectDataSource to marshal data between my object and my controls, eliminating that manual code, as long as the ObjectDataSource doesn't come with a lot of overhead.

I noticed the EnableCaching property, where does the caching occure? is it in view state?

© Stack Overflow or respective owner

Related posts about objectdatasource

Related posts about caching