I am using SubSonic version 2.2, but using the SubCommander command line tool, integrated into Visual Studio as an External Tool. I have some tables that are prefixed with 3 alpha-numeric characters, and an underscore. For example, the tables look something like this:
ABC_Table1
ABC_Table2
ABC_Table3
ABC_Table4
ABC_Table5
... and so on ...
I am using the following command line, and the table text is not getting stripped from the file names, or the class/object names.
generate /out DAL\generated /lang vb /spClassName StoredProcs /generatedNamespace Company.Data /fixPluralClassNames false /relatedTableLoadPrefix Get_ /stripTableText OTA_ /templateDirectory "C:\SubSonic\Templates"
Can you tell me why the table text is not being stripped?