How to add new bindable properties of a Typed DataSet object?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Using a partial class I can add new properties to the Row objects of a typed
dataset and I can see them using intellisense. Unfortunately, the data
source window can not see these new properties, nor can a bindingsource. I
would like to add Properties around fields that accept nulls, since the
default typed datset won't.

How can I do this?
 
KB,

Be careful to change the by the generator created dataset. It is forever
renewed if there is the slightest change.

I don't use them, probably it is better to inherit that Strongly Typed
Dataset and than add what you need it in your derived class by overriding or
adding..

Just as idea

Cor
 
Back
Top