I'm using the property includeTableList when pulling from a database. I don't need everything in the "TestAgents" database. I'm trying to pull just the "Agents" table.
<add name="TestAgents" type="SubSonic.SqlDataProvider, SubSonic" connectionStringName="Database"
includeTableList="Agents" generatedNameSpace="TestAgents" />
For some reason this is not pulling the Agents table but it is pulling an "AgentsView" table and a "AgentsViewController" table. Any ideas as to why it wont just pull the "Agents" table?