R
RS
I have a class that inherits from Dataset. I have couple of methods that
extend functionality of the dataset to fit my specific need.
I also have a SQL helper class that has method Execute dataset. Its brings
back filled dataset.
When i do :
MyDataset ds = new MyDataset();
ds = (MyDataset)SQLHelper.ExecuteDataset(some parameters); --> In runtime
this line throws an error that specified cast is invalid/
Thank you all for help!
extend functionality of the dataset to fit my specific need.
I also have a SQL helper class that has method Execute dataset. Its brings
back filled dataset.
When i do :
MyDataset ds = new MyDataset();
ds = (MyDataset)SQLHelper.ExecuteDataset(some parameters); --> In runtime
this line throws an error that specified cast is invalid/
Thank you all for help!