I'm using sonic.exe to create class files from tables,stored procedure and packages.
But the only thing I see is that the table code is generated, no code is generated for the storedm procedures or packages from oracle?
The sonic.exe command line looks like : generate /out APP_Code\Generated
And my web.config looks like:
<configSections>
<section name="SubSonicService" type="SubSonic.SubSonicSection, SubSonic" requirePermission="false"/>
</configSections>
<appSettings/>
<SubSonicService defaultProvider="MyDB">
<providers>
<clear/>
<add name="MyDB" type="SubSonic.OracleDataProvider, SubSonic" connectionStringName="MyConnectionString" generatedNamespace="MyDB"/>
</providers>
</SubSonicService>
<connectionStrings>
<add name="MyConnectionString" connectionString="Data Source=10.226.135.105/XE;Persist Security Info=True;User ID=x;Password=x;Unicode=True" providerName="System.Data.OracleClient"/>
</connectionStrings>
What I am doing wrong ? Or are stored procedures and packages not supported by subsonic when using oracle?