How to create analogue of Delphi's 'DataModule'?

  • Thread starter Thread starter BlackTiger
  • Start date Start date
B

BlackTiger

How to create analogue of Delphi's 'DataModule'?

DataModule is non-visual form, which contains connections
to DB, queries, tables, field definitions and relations
between tables. All this objects are available for all
project's forms and procedeures.

Can i implement this in .NET?
 
BlackTiger,

I don't think that there is something like this in .NET. However, you
can create a component which you can place all of the individual items on
(such as the data connections, data adapters, etc, etc). Then, you could
place your component wherever you wish and access it.

Hope this helps.
 
Back
Top