Hi Group.
Is it at all possible to inherit from typed dataset in .net 2.0? I
have a dataset defined in main project that will be distributed as
dll. But I want to give others a possibility to inherit from this
dataset and modify tables (add columns or other tables) in that
dataset as they wish using designer. Am I at the wrong design path or
something can be done after all?

Thanks in advance,
Denis

Re: Inherit form typed Dataset by RobinS

RobinS
Tue Mar 13 19:28:49 CDT 2007

Why would you want to modify the tables and columns? That makes it a whole
different data set.

You can create your own strongly typed datasets w/o the designer. I have
done that using a query against a database (just because I wanted to figure
out how it was done). You have to write your own update procedures, but I
would do that anyway.

Robin S.
----------------------------
<rusguy@gmail.com> wrote in message
news:1173754124.430442.153590@v33g2000cwv.googlegroups.com...
> Hi Group.
> Is it at all possible to inherit from typed dataset in .net 2.0? I
> have a dataset defined in main project that will be distributed as
> dll. But I want to give others a possibility to inherit from this
> dataset and modify tables (add columns or other tables) in that
> dataset as they wish using designer. Am I at the wrong design path or
> something can be done after all?
>
> Thanks in advance,
> Denis
>