Author: mattKrist | Posted on: 6/3/2008 1:33:23 PM | Views : 1491

I have migrated my website from a web site application to a we aplication in VS 2008, After the conversion i have a problem with my strongly typed Datasets.

this does not work anymore:

dsTest.TestDataTable tlTest;
dsTestTableAdapters.TestTableAdapter daTest= new dsTestTableAdapters.TestTableAdapter();
tlTest = daTest.GetData();

Error 29 ..Missing assembly bla bla bla.... 

I have to do this

MyNameSpace.dsTest.TestDataTable tlTest;
Go to the complete details ...