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 ...