orenpeled wrote:
I am very curious to find out the ODP and DATA objects on which the Adapter and SelfServicing are based Is there any use in OracleDataAdapter, for example? Is there any chance that DataSets are hidden behind?
Entities are read using a datareader, and everything related to update, insert and delete's are done using command objects. Typed lists and typed views are fetched using dataadapters, and stored procedures which return a resultset are also using dataadapters. No dataset objects are used behind the scenes, except at one spot: a datatable is used to fetch the PK-PK related values in a m:n prefetch query (the values in the intermediate table).