When I see Update()
, Fill()
methods of DataAdapter
object, I always think whether DataAdapter
uses Facade Pattern?
It looks like behind the scenes it will create Command
object, Connection
object and execute it for us.
Or DataAdapter
uses Adapter Pattern because it is adapter between Dataset
and Command
object, Connection object?