Hi,
Thanks for the help so far.
I have removed the DAL project from my solution.
I have created Components > BusinessObjects > Custom and Generated folders within my WAP project.
I have used myGeneration/EntitySpaces to create my Custom and Generated classes.
I have amended my dnn project global.asax to include the following....
Sub Application_Start(ByVal sender As Object, ByVal e As EventArgs)
EntitySpaces.Interfaces.esProviderFactory.Factory =
New EntitySpaces.LoaderMT.esDataProviderFactory()
End Sub
My dnn WAP projoct runs ok in debug, but i get "AugumentOutOfRangeException was handled by user code" when I try and perform the following LoadAll.
Table1Collection table1Collection = new Table1Collection();
table1Collection.LoadAll();
Table1 contains the following columns in my SQL 2005 database.
Id - integer primary key (seeded 1)
AValue - Varchar(50)
Any idea what I am doing wrong?
Any help appreciated.
Regards,
Paul.