Hi, I am running VS2008 in .net 3.5 and trying to get SubSonic 2.2 running. My database is called Test, the table in the DB is called TestTable. It is being run on SQL Server 2005. I get the following "warnings":
Could not find schema information for the element 'SubSonicService'.
Could not find schema information for the attribute 'defaultProvider'.
Could not find schema information for the element 'providers'.
Could not find schema information for the element 'clear'.
Could not find schema information for the element 'add'.
Could not find schema information for the attribute 'name'.
Could not find schema information for the attribute 'type'.
Could not find schema information for the attribute 'connectionStringName'.
Could not find schema information for the attribute 'generatedNameSpace'.
The problem is that the namespace is not being generated so I cannot get much working. The line "SubSonic.Generated.Tables" will bring up in the intellisence the name of my table, so I know that it can connect and it is obviously doing SOMETHING. But I cannot reference my tables like classes. Below I have included the section of the web.config that the "warnings" reference.
<SubSonicService defaultProvider="GeekPower">
<providers>
<clear/>
<add name="GeekPower" type="SubSonic.SqlDataProvider, SubSonic" connectionStringName="GeekPower" generatedNameSpace="GeekPower" />
</providers>
</SubSonicService>
Any help would be appreciated. I have been searching for hours, but no fixes that I have found work and I am just going in circles now.
Thanks!