Include underscore in CamelCase interpolation
In our schema, we have the unfortunate convention (if you can call it that...) of including underscores in many table and sproc names. For instance, a report sproc might be named ReportSalesByChannel. It would be awesome if the CamelCase interpretation either completely ignored the underscores in the name while providing the suggestions (so typing rsbc would suggest the above named report), or make it so the _ is one of the interpreted characters, which would allow rsbc to again suggest the above sproc. Right now any stored procedure with an underscore cannot be quickly suggested by any abbreviation (just by starting to type the full name).
-
Gabriel Flores commented
I've encountered this problem. We prefix sometimes using Dev_MyTable and intellisense doesn't work as expected in these cases.
-
par20pinspot commented
Intellisense for tables doesn't work for CamelCase'd table names with an underscore in the name. E.g. If you have 2 tables - PrimaryUsers & PrimaryUsers_OLD, typing P+U brings up PrimaryUsers but not PrimaryUsers_OLD. Typing P+O brings up PrimaryUsers_OLD