As it should be the file app.config in an application Windows Form so that the given access classes her they generate automatically in the build?
|
|
|||
|
|
|
Yes. What you do is add a section in configSections called "SubsonicService", like this:
Next, you add a connectionStrings branch with the connection strings that you will use in your project, like this:
Last, you add the SubsonicService node that you added in the configSections like this:
This is where you put all of your providers. I use the SubStage utility to generate the DAL. This way you can completely disassociate your stuff from the Web bits that come with Subsonic. |
||
|
|
|
|
I didn't understand. |
||
|
|
|
Your build process needs to include a command like this:
sonic.exe is the SubCommander utility, and is included in the current release. There's no way to have the app.config handle this for you directly. One way to run the command is with MSBuild. The Exec MS Build task task might look something like this:
I just made this up, so it probably needs tweaking before it'll work for you. This command would go in your visual studio project file (ie someproject.vbproj). |
|||
|
|
