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

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?
 
N

Nicholas Paldino [.NET/C# MVP]

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top