[Solved] Best Approach For CRUD [closed]


You certainly can. It surely will vary from one provider to another. You can take a peek into how MySql .Net Connector is implemented over here.

This raises the question, why would you want to do that?

Providers give you a standard API your application can depend on. That allows you to switch a provider at any time with a minimum amount of effort (obviously I’m completely ignoring possible sql syntactic differences between the target DBMS you choose).

If it’s for academic purpose, hope the source of MySql .Net Connector helps you.

solved Best Approach For CRUD [closed]