vote up 0 vote down star

When i see Update(),Fill() method of DataAdapter object I always think Is DataAdapter use facade pattern ?

It looks like behind the scenes It will create Command object, Connection object and execute it for us.

Or DataAdapter use Adapter pattern because it is adapter between Dataset and Comamand object ,Connection object ?

flag

75% accept rate

2 Answers

vote up 1 vote down

I think you could perhaps think of it like the Repository pattern, just that it focuses on data connections. Its not really an adapter because its not facilitating a communication mechanism between command and dataset - its actually manipulating and creating its own commands for its own purposes.

link|flag
vote up 1 vote down

Not everything is a GoF design pattern.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.