vote up 0 vote down star

I renamed a database table and added a ~ character to the table name (my way of notifying it is a backup of something). After generating the SubSonic files, my Visual Studio gives a "Character not valid" error on file "AllStructs.vb"

When looking into this file the following line of code was generated; Public Shared ReadOnly DbTable1~old As String = "dbtable1~old".

I assume this character has to be filtered out of the db.table names when generating the SubSonic names?

flag
Same problem with db. stored procedures with a ~ in them... – Steven May 26 at 11:44

2 Answers

vote up 0 vote down

You can use either stripTableText/stripSPText to remove the ~ from the class names or you could use regexReplaceExpression to replace the ~ with a different character.

You need to specify this in your config when generating your classes, see 'Config Options' for more details.

link|flag
vote up 0 vote down

This kind of naming isn't supported with SubSonic (conventions and all). Your best bet is to use includeTableList and excludeTableList (or one of the other options we have):

http://subsonicproject.com/configuration/config-options/

To help you pare out the old stuff.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.